/* ====================================
   LUXURY CHARCOAL + ANTIQUE-GOLD THEME
   ==================================== */

:root {
  --bg: #202021;           /* main background */
  --surface: #151516;      /* cards/sections/nav/footer */
  --gold: #C2A46E;         /* primary accent for headings/highlights */
  --gold-2: #917C55;       /* hover/borders */
  --bronze: #604F33;       /* subtle accents/shadows */
  --text: #E8E6E1;         /* main text */
  --muted: #A9A7A0;        /* secondary text */
}

/* Metallic gradient for large headings */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 4rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    background-color: var(--bg);
    border-bottom: 1px solid var(--gold-2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1600px) {
    .nav-container {
        max-width: 1200px;
        padding: 1rem 2rem;
    }
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(194, 164, 110, 0.4));
}

.logo h1 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h1:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    padding-top: 90px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 50%, var(--surface) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: var(--text);
    font-size: 1.25rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button,
.btn-primary,
.btn-secondary,
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    width: auto;
    min-width: 120px;
    height: 42px;
}

.cta-button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(194, 164, 110, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(194, 164, 110, 0.5);
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-top: -90px;
    padding-top: calc(4rem + 90px);
    border-bottom: 1px solid var(--gold-2);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: var(--text);
    font-size: 1.1rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.intro h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro p {
    color: var(--text);
    font-size: 1.1rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Preview Section */
.preview-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
}

.preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 3rem;
    font-weight: 600;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.preview-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.preview-item {
    text-align: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.preview-image {
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.preview-item h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-item p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 3rem;
    font-weight: 600;
}

.category-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Craft Categories Layouts */
.category-card {
    display: flex;
    flex-direction: column; /* Default: Landscape (top-aligned) */
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card.landscape-layout {
    flex-direction: column;
}

.category-card.portrait-layout {
    flex-direction: row;
    align-items: stretch;
}

.category-card.portrait-layout .category-image {
    width: 35%;
    height: auto;
    min-height: 400px;
}

.category-card.portrait-layout .category-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .category-card.portrait-layout {
        flex-direction: column;
    }
    .category-card.portrait-layout .category-image {
        width: 100%;
        height: 300px;
        min-height: auto;
    }
    .category-card.portrait-layout .category-content {
        width: 100%;
    }
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leatherwork-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--surface) 0%, #1a1a1b 100%);
}

.leatherwork-image {
    position: absolute;
    width: 45%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leatherwork-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leatherwork-1 {
    left: 0;
    top: 20px;
    transform: rotate(-15deg) skewX(-5deg);
    z-index: 3;
}

.leatherwork-2 {
    left: 50%;
    top: 35px;
    transform: translateX(-50%) rotate(0deg);
    z-index: 5;
    width: 50%;
}

.leatherwork-3 {
    right: 0;
    top: 20px;
    transform: rotate(15deg) skewX(5deg);
    z-index: 3;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-weight: 500;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-content p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-items {
    list-style: none;
    margin-bottom: 2rem;
}

.category-items li {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.category-items li::before {
    content: '•';
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.category-link {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: var(--text);
    font-size: 1.1rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    min-width: 180px;
    height: 48px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Shop/Gallery Sections */
.shop-category {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.shop-category:nth-child(even) {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.shop-category h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-intro {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bronze) 100%);
    position: relative;
    overflow: visible;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(21, 21, 22, 0.8);
    border: 1px solid var(--gold-2);
    color: var(--gold-2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: var(--gold-2);
    color: var(--surface);
    box-shadow: 0 0 15px rgba(194, 164, 110, 0.4);
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.product-detail-image .gallery-arrow {
    width: 50px;
    height: 50px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-decoration: none !important;
}

.product-info p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none !important;
}

.product-info h3, 
.product-info p,
.product-info .price {
    padding: 0 1.5rem;
    text-decoration: none !important;
}

.product-link {
    text-decoration: none !important;
}

.price {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    border: none !important;
    padding: 0 !important;
}

.product-info .add-to-cart-btn {
    margin: 0.2rem 1.5rem 1.2rem;
    align-self: flex-start;
}



/* Custom Order CTA */
.custom-order-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    text-align: center;
    border-top: 1px solid var(--gold-2);
}

.custom-order-cta h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-order-cta p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-text h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.story-text p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image .placeholder-image {
    height: 300px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.image-caption {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* Behind the Scenes */
.behind-scenes {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
}

.behind-scenes h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    color: var(--text);
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-image {
    height: 150px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.step-image .placeholder-image {
    height: 100%;
}

.process-step h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-2) 100%);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--muted);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.values-section h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
}

/* Services Page */
.services-overview {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.services-intro h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.services-intro p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-category {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid var(--gold-2);
}

.service-category h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-description h4 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-description p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-description ul {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
}

.service-image {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
}

.process-section h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Quote Process Section */
.quote-process {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.quote-process h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-info {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.pricing-info h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-2);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-range {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: '•';
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: absolute;
    left: 0;
}

.pricing-note {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-2);
}

.pricing-note p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin: 0;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    text-align: center;
    border-top: 1px solid var(--gold-2);
}

.service-cta h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info > p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 12px;
    border: 1px solid var(--gold-2);
}

.contact-item h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
    margin: 0;
}

/* Quote Form Section */
.quote-form-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-info h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.quote-note {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 12px;
    border: 1px solid var(--gold-2);
}

.quote-note h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quote-note p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-container,
.quote-form-container {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--gold-2);
}

.contact-form h3,
.quote-form h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gold-2);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    transition: border-color 0.3s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #D4534A;
}

.checkbox-group {
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.form-note {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
}

.faq-section h2 {
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gold-2);
}

.faq-item h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-top: 1px solid var(--gold-2);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-link {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

footer p {
    color: var(--text);
    margin: 0;
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid var(--gold-2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
    color: var(--text);
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .quote-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Pages */
.product-detail {
    padding: 2rem 0 5rem;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    text-decoration: none;
}

.breadcrumb a:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.breadcrumb span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border-radius: 12px;
    border: 1px solid var(--gold-2);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: var(--surface);
    padding: 2px;
}

.thumbnail.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 12px rgba(194, 164, 110, 0.3);
}

.thumbnail:hover {
    border-color: var(--gold-2);
    opacity: 1;
}

.product-info h1 {
    color: var(--gold);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-info .price {
    color: var(--gold);
    border: 2px solid var(--gold);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.product-description {
    color: var(--gold);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; /* Center buttons */
    align-items: center;
}

.product-actions .btn-secondary,
.product-actions .add-to-cart-btn {
    margin: 0 !important;
}

.product-details-tabs {
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--gold-2);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border: 1px solid var(--gold-2);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold-2);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: transparent;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(194, 164, 110, 0.3);
}

.accordion-header span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
}

.accordion-icon {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.accordion-content h3 {
    display: none;
}

.tab-navigation {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    border: 2px solid var(--gold-2);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-2) 100%);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    border-color: var(--gold-2);
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: transparent;
    border-radius: 8px;
    border: 1px solid var(--gold-2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(194, 164, 110, 0.3);
}

.spec-item strong {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    min-width: 150px;
}

.spec-item span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    text-align: right;
}

.materials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-item {
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    border: 1px solid var(--gold-2);
    transition: all 0.3s ease;
}

.material-item:hover {
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(194, 164, 110, 0.3);
}

.material-item h4 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.material-item p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
    margin: 0;
}

.care-instructions h4 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.care-instructions ul {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.care-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.customization-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.custom-option {
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    border: 1px solid var(--gold-2);
    transition: all 0.3s ease;
}

.custom-option:hover {
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(194, 164, 110, 0.3);
}

.custom-option h4 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.custom-option p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.custom-option strong {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.9rem;
}

/* Make product cards clickable */
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .tab-navigation {
        flex-direction: column;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .spec-item span {
        text-align: left;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .category-card,
    .product-card,
    .service-category {
        margin: 0 1rem;
    }

    .contact-form-container,
    .quote-form-container {
        padding: 1.5rem;
    }

    .story-text h2,
    .intro h2,
    .categories h2 {
        font-size: 2rem;
    }
    
    .product-details-tabs {
        padding: 1rem;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Cart Styles */
.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-fill-color: #000;
}

.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border: 1px solid var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-cart-btn {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    color: #000;
    -webkit-text-fill-color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Cart Page Styles */
.cart-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
}

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

.cart-item-details h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold) !important;
    background: #222 !important;
    color: var(--gold) !important;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-text-fill-color: var(--gold) !important;
    text-fill-color: var(--gold) !important;
}

.qty-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.qty-value {
    min-width: 30px;
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.cart-item-total {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
}

.remove-btn {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    -webkit-text-fill-color: var(--gold) !important;
    text-fill-color: var(--gold) !important;
}

.remove-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Cart Summary */
.cart-summary {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-row span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-row {
    border-top: 2px solid var(--gold);
    padding-top: 1rem;
    margin-top: 1rem;
}

.total-row span {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Shipping Calculator */
.shipping-calculator {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.shipping-calculator h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover,
.shipping-option.selected {
    border-color: var(--gold);
}

.shipping-option input[type="radio"] {
    accent-color: var(--gold);
    margin-top: 4px;
}

.shipping-option-content {
    flex: 1;
}

.shipping-option-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.shipping-name {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.shipping-price {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.shipping-desc {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
}

.free-shipping-note {
    display: block;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.shipping-row {
    margin-top: 1rem;
}

/* Checkout Section */
.checkout-section {
    margin-top: 1.5rem;
}

.email-label {
    display: block;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.email-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface) !important;
    border: 2px solid #333 !important;
    border-radius: 8px;
    color: var(--gold) !important;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    -webkit-text-fill-color: var(--gold) !important;
    text-fill-color: var(--gold) !important;
}

.email-input::placeholder {
    color: var(--gold) !important;
    opacity: 0.6 !important;
}

.email-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(249, 212, 35, 0.2);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    color: #000;
    -webkit-text-fill-color: #000;
    cursor: pointer;
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secure-checkout {
    text-align: center;
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.continue-shopping:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: transparent;
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(194, 164, 110, 0.5), inset 0 0 20px rgba(194, 164, 110, 0.1);
    transform: translateY(-2px);
}

/* Image Gallery Navigation */
.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent !important;
    color: #C2A46E !important;
    border: none !important;
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15 !important;
    transition: all 0.3s ease;
    padding: 0.5rem;
    opacity: 1 !important;
}

.gallery-arrow:hover {
    color: #E7D6A6 !important;
    transform: translateY(-50%) scale(1.2);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.main-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.main-image-nav .gallery-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    font-size: 3.5rem !important;
    background: transparent !important;
    color: #C2A46E !important;
    opacity: 1 !important;
    z-index: 30 !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-image-nav .gallery-arrow:hover {
    color: #E7D6A6 !important;
    transform: scale(1.3) !important;
}

.main-image-nav .gallery-prev {
    left: 15px !important;
    right: auto !important;
}

.main-image-nav .gallery-next {
    right: 15px !important;
    left: auto !important;
}

.product-card .add-to-cart-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Success Page */
.success-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
    min-height: 70vh;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.success-content h1 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.order-details {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-details h2 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.order-summary-details p {
    color: var(--text);
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.next-steps {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    background: linear-gradient(135deg, #604F33 0%, #C2A46E 45%, #E7D6A6 55%, #917C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    -webkit-text-fill-color: #4caf50;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Cart Responsive */
@media (max-width: 900px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total,
    .remove-btn {
        grid-column: 2;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}