  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
      color: #111111;
      background: #FFFFFF;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      color: #E63946;
      letter-spacing: -1px;
    }

    .nav-menu {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .nav-link {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #111111;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #E63946;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #E63946;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-icons {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .nav-icon {
      font-size: 1.3rem;
      color: #111111;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-icon:hover {
      color: #E63946;
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #E63946;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 50%;
      min-width: 18px;
      text-align: center;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #111111;
    }

    /* Hero Section */
    .hero {
      margin-top: 90px;
      min-height: 90%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 4rem;
      line-height: 1.1;
      color: #111111;
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      color: #666;
      margin-bottom: 3rem;
      font-weight: 300;
      min-height: 30px;
    }

    .dynamic-text {
      color: #E63946;
      font-weight: 700;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: #E63946;
      color: white;
    }

    .btn-primary:hover {
      background: #d32f3c;
      box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: #111111;
      border: 2px solid #111111;
    }

    .btn-secondary:hover {
      background: #111111;
      color: white;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .hero-center {
      position: relative;
      overflow: hidden;
    }

    .hero-carousel {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .carousel-image.active {
      opacity: 1;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      padding: 2rem;
    }

    .vertical-slider {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      animation: slideUp 20s linear infinite;
    }

    @keyframes slideUp {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    .slider-item {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden;
    }

    .slider-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .slider-item:hover img {
      transform: scale(1.1);
    }

    /* Section Styles */
    .section {
      padding: 6rem 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 1rem;
      color: #111111;
    }

    .section-subtitle {
      text-align: center;
      color: #666;
      font-size: 1.2rem;
      margin-bottom: 4rem;
      font-weight: 300;
    }

    /* Collections */
    .collections-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .collection-card {
      position: relative;
      height: 500px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .collection-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .collection-card:hover .collection-image {
      transform: scale(1.1);
    }

    .collection-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      padding: 2rem;
      color: white;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .collection-card:hover .collection-overlay {
      transform: translateY(0);
      opacity: 1;
    }

    .collection-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .collection-tagline {
      font-size: 1rem;
      margin-bottom: 1rem;
      color: #C0C0C0;
    }

    /* Products */
    .products-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 2rem 0;
      scroll-behavior: smooth;
    }

    .products-scroll::-webkit-scrollbar {
      height: 8px;
    }

    .products-scroll::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .products-scroll::-webkit-scrollbar-thumb {
      background: #E63946;
      border-radius: 10px;
    }

    .product-card {
      min-width: 320px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-10px) rotate(1deg);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .product-image-container {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image {
      transform: scale(1.1);
    }

    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(230, 57, 70, 0.9);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-card:hover .product-overlay {
      opacity: 1;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #111111;
    }

    .product-price {
      font-size: 1.4rem;
      color: #E63946;
      font-weight: 700;
    }

    .btn-quick-view, .btn-add-cart {
      padding: 0.8rem 2rem;
      background: white;
      color: #E63946;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }

    .btn-quick-view:hover, .btn-add-cart:hover {
      background: #111111;
      color: white;
      transform: scale(1.05);
    }

    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .gallery-item {
      position: relative;
      height: 400px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
      filter: brightness(0.7);
    }

    .gallery-item::after {
      content: 'View';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    /* Brand Story */
    .brand-story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .brand-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .brand-content h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: #111111;
    }

    .brand-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #666;
      margin-bottom: 1.5rem;
    }

    .brand-highlight {
      background: #F5F5F5;
      padding: 2rem;
      border-left: 4px solid #E63946;
      margin: 2rem 0;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .testimonial-card {
      background: white;
      padding: 2.5rem;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .testimonial-rating {
      color: #E63946;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #666;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #111111;
    }

    /* Blog */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-bottom: 4rem;
    }

    .blog-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .blog-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .blog-card:hover .blog-image {
      transform: scale(1.1);
      filter: brightness(0.8);
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-category {
      color: #E63946;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .blog-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #111111;
    }

    .blog-excerpt {
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .blog-date {
      color: #999;
      font-size: 0.9rem;
    }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, #E63946 0%, #d32f3c 100%);
      padding: 5rem 3rem;
      text-align: center;
      color: white;
    }

    .newsletter h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .newsletter p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }

    .newsletter-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      gap: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 1.2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-family: 'Lato', sans-serif;
    }

    .btn-subscribe {
      padding: 1.2rem 2.5rem;
      background: #111111;
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 5px;
    }

    .btn-subscribe:hover {
      background: white;
      color: #E63946;
      transform: scale(1.05);
    }

    /* Footer */
    .footer {
      background: #111111;
      color: white;
      padding: 4rem 3rem 2rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #E63946;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #C0C0C0;
      text-decoration: none;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #E63946;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: white;
      color: #E63946;
      transform: scale(1.1);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #333;
      color: #999;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 10px;
      max-width: 900px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2rem;
      color: #111111;
      cursor: pointer;
      z-index: 10;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: #E63946;
      color: white;
      transform: rotate(90deg);
    }

    .modal-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .modal-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px 0 0 10px;
    }

    .modal-info {
      padding: 3rem;
    }

    .modal-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #111111;
    }

    .modal-price {
      font-size: 2rem;
      color: #E63946;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .modal-description {
      color: #666;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .modal-sizes {
      margin-bottom: 2rem;
    }

    .modal-sizes h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .size-options {
      display: flex;
      gap: 1rem;
    }

    .size-btn {
      padding: 0.8rem 1.5rem;
      border: 2px solid #ddd;
      background: white;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .size-btn:hover, .size-btn.active {
      border-color: #E63946;
      background: #E63946;
      color: white;
    }

    /* Page Content */
    .page-content {
      display: none;
      min-height: 80%;
      padding: 8rem 3rem 4rem;
    }

    .page-content.active {
      display: block;
    }

    .page-hero {
      text-align: center;
      margin-bottom: 4rem;
    }

    .page-hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 4rem;
      color: #111111;
      margin-bottom: 1rem;
    }

    .page-hero p {
      font-size: 1.3rem;
      color: #666;
    }

    .policy-content {
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .policy-content h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2rem;
      margin: 2.5rem 0 1rem;
      color: #111111;
    }

    .policy-content h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      margin: 2rem 0 1rem;
      color: #E63946;
    }

    .policy-content p {
      margin-bottom: 1.5rem;
      color: #666;
    }

    .policy-content ul {
      margin: 1rem 0 1.5rem 2rem;
      color: #666;
    }

    .policy-content li {
      margin-bottom: 0.5rem;
    }

    /* Login */
    .login-container {
      max-width: 500px;
      margin: 4rem auto;
      background: white;
      padding: 3rem;
      border-radius: 10px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .login-container h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2rem;
      text-align: center;
      margin-bottom: 2rem;
      color: #111111;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #111111;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      border: 2px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      font-family: 'Lato', sans-serif;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: #E63946;
    }

    .btn-login {
      width: 100%;
      padding: 1.2rem;
      background: #E63946;
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 5px;
      margin-top: 1rem;
    }

    .btn-login:hover {
      background: #d32f3c;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    }

    .login-links {
      text-align: center;
      margin-top: 1.5rem;
      color: #666;
    }

    .login-links a {
      color: #E63946;
      text-decoration: none;
      font-weight: 700;
    }

    /* Cart */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -450px;
      width: 450px;
      height: 100%;
      background: white;
      box-shadow: -5px 0 30px rgba(0,0,0,0.2);
      z-index: 2000;
      transition: right 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar.active {
      right: 0;
    }

    .cart-header {
      padding: 2rem;
      border-bottom: 2px solid #f5f5f5;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-header h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
    }

    .cart-close {
      font-size: 2rem;
      cursor: pointer;
      color: #111111;
      transition: all 0.3s ease;
    }

    .cart-close:hover {
      color: #E63946;
      transform: rotate(90deg);
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 2rem;
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #f5f5f5;
    }

    .cart-item-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .cart-item-price {
      color: #E63946;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .quantity-btn {
      width: 30px;
      height: 30px;
      border: 1px solid #ddd;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .quantity-btn:hover {
      background: #E63946;
      color: white;
      border-color: #E63946;
    }

    .cart-item-remove {
      color: #999;
      cursor: pointer;
      text-decoration: underline;
      font-size: 0.9rem;
      margin-top: 0.5rem;
      display: inline-block;
    }

    .cart-item-remove:hover {
      color: #E63946;
    }

    .cart-footer {
      padding: 2rem;
      border-top: 2px solid #f5f5f5;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }

    .cart-total-label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    .cart-total-amount {
      color: #E63946;
      font-weight: 900;
      font-size: 1.5rem;
    }

    .btn-checkout {
      width: 100%;
      padding: 1.2rem;
      background: #E63946;
      color: white;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 5px;
    }

    .btn-checkout:hover {
      background: #d32f3c;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    }

    .cart-empty {
      text-align: center;
      padding: 4rem 2rem;
      color: #999;
    }

    .cart-empty-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #111111;
      color: white;
      padding: 1rem 2rem;
      border-radius: 5px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      z-index: 3000;
      animation: slideInRight 0.3s ease;
      display: none;
    }

    .toast.active {
      display: block;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Blog Full */
    .blog-full-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .blog-full-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 2rem;
    }

    .blog-full-meta {
      display: flex;
      gap: 2rem;
      color: #999;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    .blog-full-content h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 2.5rem;
      margin: 2rem 0 1rem;
      color: #111111;
    }

    .blog-full-content p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #666;
      margin-bottom: 1.5rem;
    }

    .blog-full-quote {
      background: #F5F5F5;
      padding: 2rem;
      border-left: 4px solid #E63946;
      margin: 2rem 0;
      font-style: italic;
      font-size: 1.2rem;
      color: #111111;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr 1fr;
      }

      .hero-right {
        display: none;
      }

      .collections-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .collections-grid, .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
      }

      .brand-story {
        grid-template-columns: 1fr;
      }

      .modal-body {
        grid-template-columns: 1fr;
      }

      .modal-image {
        height: 300px;
        border-radius: 10px 10px 0 0;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .cart-sidebar {
        width: 100%;
        right: -100%;
      }

      .page-hero h1 {
        font-size: 2.5rem;
      }
    }

    .hidden {
      display: none !important;
    }

    /* Loading State */
    .loading {
      opacity: 0.6;
      pointer-events: none;
    }

    .spinner {
      border: 3px solid #f3f3f3;
      border-top: 3px solid #E63946;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      animation: spin 1s linear infinite;
      display: inline-block;
      margin-left: 0.5rem;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
  /* General Header */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #e63946; /* accent color */
}

/* Nav Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  cursor: pointer;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e63946;
  color: #fff;
  font-size: 0.65rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 5px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
  }

  .mobile-toggle {
    display: block;
  }
}