:root {
    --teal-dark: #164451;
    --teal: #2d6470;
    --teal-light: #4a7c8a;
    --gradient-teal: linear-gradient(135deg, #164451 0%, #2d6470 40%, #4a7c8a 100%);
    --gradient-teal-horizontal: linear-gradient(to right, #164451 0%, #2d6470 40%, #4a7c8a 100%);
    
    --tan-dark: #b8935a;
    --tan: #c9a66b;
    --tan-light: #d4b87f;
    --tan-lighter: #e8d5c4;
    --tan-lightest: #f4ebe0;
    
    --gold: #f4d799;
    --gold-light: #ffe4a8;
    --gold-dark: #d9bd7a;
    --gold-muted: #e5d0a0;
    
    --white: #ffffff;
    --off-white: #f8f7f5;
    --light-gray: #e8e6e3;
    --text-dark: #2c2c2c;
    --text-muted: #6b6b6b;
}

/* Starfield Effect */
.starfield {
    position: relative;
    overflow: hidden;
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 15% 90%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 75% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 40% 15%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 85% 85%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 65% 95%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 10% 65%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 95% 40%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 45% 60%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 70% 5%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 30% 95%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 55% 35%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 5% 20%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 88% 75%, rgba(255, 255, 255, 0.7), transparent);
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%,
                     200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%,
                     200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%,
                     200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
    background-position: 0% 0%;
    pointer-events: none;
    opacity: 0.8;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.5; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

main {
    flex: 1;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.main-header {
    position: sticky;
    top: 0;
    background: var(--gradient-teal-horizontal);
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.starfield {
    overflow: visible;
}

.main-header > * {
    position: relative;
    z-index: 2;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: var(--gold-light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    color: var(--gold-light);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.logo-subtext {
    color: white;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.9;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--teal-dark);
    list-style: none;
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

.submenu a:hover {
    background: var(--tan-light);
    color: var(--gold-dark);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-link {
    color: white;
    transition: color 0.3s ease;
    position: relative;
}

.icon-link:hover {
    color: var(--tan-light);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
}

.hero-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-image: url('pyramid-starry-night.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(22, 68, 81, 0.3), rgba(22, 68, 81, 0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-overlay > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--gold-light);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.collections-hero {
    background: var(--gradient-teal);
    padding: 100px 40px;
    text-align: center;
}

.collections-hero > * {
    position: relative;
    z-index: 2;
}

.collections-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.collections-hero-title {
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.collections-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
}

.collections-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.gallery-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-cell {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 95, 111, 0.2);
}

.category-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-cell:hover img {
    transform: scale(1.05);
}

.category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 58, 69, 0.95), rgba(44, 95, 111, 0.7), transparent);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
}

.back-button {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--gold-light);
}

.category-hero {
    background: var(--gradient-teal);
    padding: 80px 40px;
    border-bottom: 3px solid var(--gold);
}

.category-hero > * {
    position: relative;
    z-index: 2;
}

.category-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--gold-light);
}

.category-hero-title {
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.category-header {
    background: linear-gradient(135deg, var(--tan-lightest) 0%, var(--tan-lighter) 100%);
    padding: 60px 40px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.category-title {
    font-size: 3rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.category-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.images-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

#images-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    position: relative;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 95, 111, 0.25);
}

.image-card:hover::before {
    opacity: 0.05;
}

.image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-info {
    padding: 25px;
    background: white;
    position: relative;
    z-index: 2;
}

.image-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.image-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.image-price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.detail-image-section-fullwidth {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image-section-fullwidth img {
    max-width: 90%;
    max-height: 600px;
    height: auto;
    display: block;
    background: white;
    padding: 20px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image-section {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.detail-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-info-section {
    padding: 20px 0;
}

.detail-left-section h1 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.price-display {
    margin: 30px 0;
}

.price-display-dynamic {
    margin: 0 0 25px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.price-display-dynamic .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.price-display-dynamic .price-amount {
    font-size: 2.2rem;
    display: block;
}

.room-image-container {
    margin-top: 40px;
}

.room-image-heading {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 18px;
    font-weight: 600;
}

.room-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.detail-right-section {
    background: var(--tan-lightest);
    padding: 30px;
    border-radius: 8px;
}

.options-section h3 {
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.variant-section {
    margin-bottom: 25px;
}

.variant-label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.variant-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.variant-carousel-track {
    display: flex;
    gap: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex: 1;
}

.variant-card {
    flex: 0 0 100px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.variant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.variant-card.selected {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.variant-image {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

.variant-info {
    padding: 8px;
    text-align: center;
    background: var(--off-white);
}

.variant-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.variant-price {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.carousel-nav {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover:not(:disabled) {
    background: var(--teal-dark);
    transform: scale(1.1);
}

.carousel-nav:disabled {
    cursor: not-allowed;
}

.selected-variant-name {
    margin-top: 12px;
    padding: 10px;
    background: var(--white);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    color: var(--teal);
    font-size: 0.9rem;
    border: 1px solid var(--gold-muted);
}

.no-variants-message {
    padding: 15px;
    background: var(--white);
    border-radius: 6px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.option-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.option-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.btn {
    background: var(--gradient-teal);
    color: var(--gold-light);
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: var(--tan-light);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-teal);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(26, 58, 69, 0.3);
}

.add-to-cart-btn,
.add-to-cart-button {
    width: 100%;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover,
.add-to-cart-button:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.add-to-cart-btn:active,
.add-to-cart-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

.add-to-cart-btn:disabled,
.add-to-cart-button:disabled {
    background: var(--tan-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.cart-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.cart-page h1 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-message p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cart-items-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: var(--tan-lightest);
    border-radius: 8px;
    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 150px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.cart-item-details p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cart-item-options {
    margin: 0;
}

.cart-item-price {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.qty-btn {
    background: var(--gradient-teal);
    color: var(--gold-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(26, 58, 69, 0.3);
}

.qty-input {
    width: 50px;
    text-align: center;
    padding: 6px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 0.95rem;
}

.cart-item-total {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-align: center;
}

.cart-item-remove {
    background: #e74c3c;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cart-item-remove:hover {
    background: #c0392b;
}

.cart-summary {
    background: linear-gradient(135deg, var(--tan-lightest) 0%, var(--tan-lighter) 100%);
    border-radius: 8px;
    padding: 30px;
    border: 2px solid var(--gold-muted);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--tan);
    font-size: 1rem;
}

.summary-row:last-of-type {
    border-bottom: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    padding-top: 20px;
    margin-top: 10px;
}

.summary-row:last-of-type span:last-child {
    color: var(--gold);
}

.btn-checkout {
    width: 100%;
    margin-top: 20px;
    background: var(--gradient-teal);
    color: var(--gold-light);
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-checkout:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(26, 58, 69, 0.3);
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: var(--gold-light);
}

.checkout-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.checkout-page h1 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.shipping-notice {
    background: var(--tan-lightest);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    align-items: start;
    border-radius: 4px;
}

.shipping-notice svg {
    color: var(--gold);
    flex-shrink: 0;
}

.shipping-notice strong {
    color: var(--gold-dark);
    display: block;
    margin-bottom: 5px;
}

.checkout-container {
    background: var(--off-white);
    border-radius: 8px;
    padding: 40px;
}

.checkout-form h2 {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.form-section {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tan);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-items {
    margin-top: 30px;
}

.order-items h3 {
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.main-footer {
    background: var(--gradient-teal);
    color: white;
    padding: 50px 40px 30px;
    margin-top: auto;
}

.main-footer > * {
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: white;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--tan-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.about-page,
.contact-page {
    min-height: 100vh;
}

.about-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--tan-lightest) 0%, var(--tan-lighter) 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.about-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p,
.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--tan-lightest);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section {
    background: var(--tan-lightest);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.contact-info-card {
    background: var(--tan-lightest);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 5px 0;
}

.contact-info-card a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-info-card .hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-info-section .social-link {
    color: var(--gold-dark);
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-info-section .social-link:hover {
    background: var(--gold);
    color: white;
}

.faq-link {
    margin-top: 20px;
    padding: 20px;
    background: var(--tan-lighter);
    border-radius: 8px;
    text-align: center;
}

.faq-link p {
    color: var(--text-dark);
}

.faq-link a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link a:hover {
    color: var(--gold);
}

.contact-faq {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.contact-faq h2 {
    font-size: 2.2rem;
    color: var(--teal-dark);
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, var(--tan-lightest) 0%, var(--tan-lighter) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--teal);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--teal-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image-container {
        height: 50vh;
        min-height: 400px;
    }
    
    .gallery-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-hero {
        padding: 60px 20px;
    }
    
    .category-hero-title {
        font-size: 2.5rem;
    }
    
    .collections-hero {
        padding: 60px 20px;
    }
    
    .collections-hero-title {
        font-size: 2.5rem;
    }
    
    .collections-hero-description {
        font-size: 1.1rem;
    }
    
    .collections-section {
        padding: 60px 20px;
    }
    
    .gallery-content {
        padding: 60px 20px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-items-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-price,
    .cart-item-total {
        text-align: left;
    }
    
    .cart-item-quantity {
        justify-content: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--teal-dark);
        padding: 20px;
    }
    
    .main-nav.mobile-open .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-faq {
        padding: 0 20px;
    }
    
    .contact-faq h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
}
