/* ========================================
   PADIŞAH KAYISISI - Premium E-Commerce
   ======================================== */

/* === Reset & Variables === */
:root {
    --gold: #C8973E;
    --gold-light: #E8B960;
    --gold-dark: #8B6914;
    --gold-pale: #F5E6C8;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-medium: #2A2A2A;
    --white: #FAFAFA;
    --cream: #FFF8F0;
    --cream-dark: #F0E6D6;
    --text: #333333;
    --text-light: #777777;
    --text-dark: #111111;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-elegant: 'Cormorant Garamond', 'Georgia', serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* === Custom Cursor === */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200, 151, 62, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-dot {
    width: 16px;
    height: 16px;
    background: rgba(200, 151, 62, 0.5);
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.crown-icon {
    width: 80px;
    height: 64px;
    margin: 0 auto 30px;
}

.crown-icon svg {
    width: 100%;
    height: 100%;
}

.crown-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawCrown 2s ease forwards;
}

.crown-base {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCrown 1.5s ease 0.5s forwards;
}

@keyframes drawCrown {
    to { stroke-dashoffset: 0; }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(200, 151, 62, 0.2);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloaderProgress 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderProgress {
    to { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out-expo);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 151, 62, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-crown {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(200, 151, 62, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 6px;
    color: rgba(200, 151, 62, 0.6);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    padding: 8px;
}

.cart-btn:hover { color: var(--gold); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s var(--ease-out-expo);
}

.cart-count.show { transform: scale(1); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
}

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

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

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

@media (max-width: 968px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 151, 62, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 105, 20, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 151, 62, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, #0D0B08 50%, var(--black) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.float-apricot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 151, 62, 0.08), transparent 70%);
}

.float-1 { top: 15%; left: 10%; }
.float-2 { top: 60%; right: 15%; width: 80px; height: 80px; }
.float-3 { bottom: 20%; left: 30%; width: 100px; height: 100px; }

.float-leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50% 0 50% 0;
    background: radial-gradient(circle, rgba(200, 151, 62, 0.06), transparent 70%);
}

.float-4 { top: 25%; right: 25%; }
.float-5 { bottom: 30%; left: 15%; width: 40px; height: 40px; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 40px;
    opacity: 0;
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    transform: translateY(120%);
}

.title-word.accent {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    opacity: 0;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 151, 62, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200, 151, 62, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-3d-object {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-3d-object { display: none; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-dark);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(200, 151, 62, 0.4);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Marquee === */
.marquee-section {
    padding: 25px 0;
    background: var(--gold);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--black);
    text-transform: uppercase;
}

.marquee-dot {
    font-size: 0.6rem !important;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Styles === */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Story Section === */
.story-section {
    padding: 140px 0;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-image-stack {
    position: relative;
}

.story-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.img-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
}

.story-img-1 {
    position: relative;
    z-index: 1;
}

.story-img-2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    z-index: 2;
}

.story-img-2 .img-placeholder {
    height: 250px;
}

.story-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(200, 151, 62, 0.4);
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    text-align: center;
    line-height: 1.3;
}

.story-content {
    padding-left: 20px;
}

.story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.feature strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.feature span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-content { padding-left: 0; }
    .story-img-2 { position: relative; bottom: -20px; right: 0; width: 80%; margin-left: auto; }
}

/* === Category Filters === */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* === Products Section === */
.products-section {
    padding: 140px 0;
    background: var(--white);
}

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

.product-card {
    perspective: 1000px;
}

.product-card-inner {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
    transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.product-3d-badge {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: rotate(-15deg);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 12px 28px;
    background: var(--white);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 8px 0;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-unit {
    font-size: 0.8rem;
    color: var(--text-light);
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 968px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* === Process Section === */
.process-section {
    padding: 140px 0;
    background: var(--black);
    overflow: hidden;
}

.process-section .section-title {
    color: var(--white);
}

.process-scroll-container {
    overflow: hidden;
    margin-top: 60px;
}

.process-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
}

.process-card {
    flex-shrink: 0;
    width: 320px;
    padding: 50px 40px;
    border: 1px solid rgba(200, 151, 62, 0.15);
    border-radius: 12px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 151, 62, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    border-color: rgba(200, 151, 62, 0.4);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(200, 151, 62, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.process-progress {
    width: 200px;
    height: 2px;
    background: rgba(200, 151, 62, 0.1);
    margin: 40px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.process-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s;
}

/* === Testimonials === */
.testimonials-section {
    padding: 140px 0;
    background: var(--cream);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

/* === CTA Section === */
.cta-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 151, 62, 0.1) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 151, 62, 0.2);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-input:focus {
    border-color: var(--gold);
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-form .btn {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .cta-form {
        flex-direction: column;
    }
}

/* === Contact Section === */
.contact-section {
    padding: 140px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(200, 151, 62, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--cream);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* === Cart Sidebar === */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.cart-close {
    color: var(--text-light);
    transition: color 0.3s;
    padding: 5px;
}

.cart-close:hover { color: var(--text-dark); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 15px;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-top: 4px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-item-qty span {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-item-remove {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 5px;
    transition: color 0.2s;
}

.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

/* === Product Modal === */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    padding: 40px;
}

.product-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.product-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s var(--ease-out-expo);
}

.product-modal-overlay.active .product-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    color: var(--text-light);
    padding: 8px;
    transition: color 0.3s;
}

.modal-close:hover { color: var(--text-dark); }

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    height: 500px;
    border-radius: 16px 0 0 16px;
}

.modal-info {
    padding: 50px 40px;
}

@media (max-width: 768px) {
    .modal-content { grid-template-columns: 1fr; }
    .modal-image {
        height: 250px;
        border-radius: 16px 16px 0 0;
    }
}

/* === Footer === */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links-group a {
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    font-size: 0.8rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* === Smooth Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === Selection === */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
