body {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Cormorant Garamond', Georgia, serif;
        min-height: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        min-height: 100%;
        padding: 40px 20px;
    }

    header {
        text-align: center;
        margin-bottom: 50px;
    }

    .store-title {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: 3px;
        margin: 0 0 10px 0;
        text-transform: uppercase;
    }

    .store-tagline {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 2px;
        margin: 0;
        opacity: 0.9;
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        letter-spacing: 2px;
        margin: 0 0 40px 0;
        text-transform: uppercase;
    }

    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .product-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 420px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .product-card.vip {
        border: 3px solid;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
        animation: vipGlow 2s ease-in-out infinite;
    }

    .product-card.vip:hover {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.7), 0 15px 40px rgba(212, 175, 55, 0.5), 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    @keyframes vipGlow {

        0%,
        100% {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        50% {
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.7), 0 4px 15px rgba(212, 175, 55, 0.4), 0 2px 8px rgba(0, 0, 0, 0.4);
        }
    }

    .vip-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
        transition: filter 0.3s ease;
    }

    .product-card.active .product-image,
    .product-card:hover .product-image {
        filter: brightness(0.4);
    }

    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .product-card.active .product-overlay,
    .product-card:hover .product-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .product-name {
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 20px 0;
        text-align: center;
        letter-spacing: 1px;
    }

    .product-details {
        width: 100%;
        margin-bottom: 20px;
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .detail-label {
        font-weight: 600;
        opacity: 0.9;
    }

    .detail-value {
        font-weight: 400;
    }

    .product-price {
        font-size: 28px;
        font-weight: 700;
        margin: 15px 0;
        letter-spacing: 1px;
    }

    .view-more-btn {
        padding: 12px 30px;
        border: 2px solid;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .view-more-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    @media (max-width: 768px) {
        .store-title {
            font-size: 36px;
        }

        .store-tagline {
            font-size: 16px;
        }

        .section-title {
            font-size: 24px;
        }

        .catalog-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            height: 380px;
        }

        .product-name {
            font-size: 20px;
        }

        .detail-item {
            font-size: 14px;
        }

        .product-price {
            font-size: 24px;
        }
    }

    .hamburger-menu {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover {
        transform: scale(1.1);
    }

    .hamburger-icon {
        width: 30px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        padding: 80px 30px 30px;
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .menu-overlay.active {
        right: 0;
    }

    .menu-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 2px;
        margin: 0 0 30px 0;
        text-transform: uppercase;
    }

    .menu-categories {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-category {
        padding: 15px 0;
        font-size: 18px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .menu-category:hover {
        padding-left: 10px;
        opacity: 0.8;
    }

    .menu-category.active {
        font-weight: 700;
        padding-left: 10px;
    }

    @media (max-width: 480px) {
        .catalog-grid {
            grid-template-columns: 1fr;
        }

        .container {
            padding: 30px 15px;
        }

        .menu-overlay {
            width: 250px;
        }
    }
    @view-transition {
        navigation: auto;
    }

     .welcome-popup {
      max-width: 600px;
      width: 90%;
      border-radius: 12px;
      padding: 50px 40px;
      box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4), 0 10px 30px rgba(0, 0, 0, 0.8);
      text-align: center;
      animation: slideUp 0.5s ease;
      position: relative;
    }

    .welcome-icon {
      font-size: 80px;
      margin-bottom: 20px;
      animation: bounce 1s ease infinite;
    }

    .welcome-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.4s ease;
    }

    .welcome-overlay.active {
      display: flex;
    }

    .welcome-title {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: 2px;
      margin: 0 0 15px 0;
      text-transform: uppercase;
    }

    .welcome-message {
      font-size: 20px;
      line-height: 1.6;
      opacity: 0.9;
      margin: 0 0 30px 0;
    }

    .welcome-close-btn {
      padding: 15px 40px;
      border: 2px solid;
      background: transparent;
      border-radius: 6px;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .welcome-close-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }