/* ============================================
   BOWOO Jewelry - Tiffany-inspired Design
   ============================================ */

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

:root {
    /* Tiffany Blue inspired palette */
    --tiffany: #0ABAB5;
    --tiffany-light: #81D8D0;
    --tiffany-dark: #089C98;
    --tiffany-bg: #E8F6F5;
    --primary: #1a1a1a;
    --primary-light: #333;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --bg: #FFFFFF;
    --bg-cream: #FAFAF8;
    --bg-gray: #F5F5F3;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #999;
    --border: #E0E0E0;
    --border-light: #EEEEEE;
    --success: #2D8B4E;
    --error: #C53030;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
    --font-en: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-ko: 'Noto Sans KR', -apple-system, 'Malgun Gothic', sans-serif;
    --header-h: 60px;
    --topbar-h: 40px;
    --nav-h: 44px;
}

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

body {
    font-family: var(--font-ko);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP BAR - Tiffany Blue
   ============================================ */
.top-bar {
    background: var(--tiffany);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.top-bar-inner>span {
    font-size: 0.72rem;
}

.top-bar-right {
    position: absolute;
    right: 0;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 20px;
    font-size: 0.7rem;
}

.top-bar-right a:hover {
    color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo-text {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.logo-sub {
    font-family: var(--font-en);
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

/* Header Icons */
.header-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-btn {
    position: relative;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.icon-btn:hover {
    color: var(--tiffany-dark);
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--tiffany);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 10;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-close-btn {
    display: none;
    font-size: 1.8rem;
    padding: 12px 20px;
    text-align: right;
    color: var(--text-light);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
}

/* ============================================
   NAVIGATION - Separate bar below header
   ============================================ */
.main-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 0;
    justify-content: center;
}

.nav-item>a {
    display: block;
    padding: 12px 22px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text);
    position: relative;
    transition: all var(--transition);
}

.nav-item>a:hover {
    color: var(--tiffany-dark);
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-item>a:hover::after,
.nav-item.active>a::after {
    width: calc(100% - 44px);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.dropdown a {
    font-size: 0.78rem;
    color: var(--text-light);
}

.dropdown a:hover {
    color: var(--tiffany-dark);
}

/* ============================================
   HERO / BANNER - Tiffany Style
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--tiffany-light);
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide-img {
    width: 100%;
    height: 75vh;
    max-height: 720px;
    min-height: 400px;
    object-fit: cover;
    background: var(--tiffany-light);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 24px;
}

.hero-content h2 {
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.hero-content p {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font-ko);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.85);
}

.btn-tiffany {
    background: var(--tiffany);
    color: #fff;
    border-color: var(--tiffany);
}

.btn-tiffany:hover {
    background: var(--tiffany-dark);
    border-color: var(--tiffany-dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.72rem;
}

.btn-lg {
    padding: 16px 44px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 70px 0;
}

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

.section-header h2 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.section-header .section-sub {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 300;
}

.section-header .divider {
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 14px auto;
}

/* ============================================
   COLLECTION SLIDER (Tiffany-style horizontal scroll)
   ============================================ */
.collection-slider-section {
    padding: 50px 0;
    overflow: hidden;
}

.collection-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 20px;
    scrollbar-width: none;
}

.collection-slider::-webkit-scrollbar {
    display: none;
}

.collection-slide {
    flex: 0 0 240px;
    scroll-snap-align: start;
    text-align: center;
}

.collection-slide-img {
    width: 240px;
    height: 240px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-gray);
}

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

.collection-slide:hover .collection-slide-img img {
    transform: scale(1.05);
}

.collection-slide h3 {
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.collection-slide p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    background: #fff;
}

.slider-nav button:hover {
    border-color: var(--primary);
}

.slider-progress {
    width: 60px;
    height: 2px;
    background: var(--border-light);
    position: relative;
}

.slider-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 30%;
    transition: width var(--transition);
}

/* ============================================
   GIFT / 3-COL SECTION
   ============================================ */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gift-card {
    position: relative;
    overflow: hidden;
}

.gift-card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--tiffany-light);
}

.gift-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gift-card:hover .gift-card-img img {
    transform: scale(1.04);
}

.gift-card-info {
    padding: 16px 0;
    text-align: center;
}

.gift-card-info h3 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.gift-card-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   TWO-COLUMN PROMO (Popular / New)
   ============================================ */
.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.promo-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-panel-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.promo-panel-overlay h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================================
   FULL-WIDTH PROMO BANNER (Tiffany Box style)
   ============================================ */
.promo-banner-full {
    position: relative;
    overflow: hidden;
    background: var(--tiffany);
    min-height: 450px;
    display: flex;
    align-items: center;
}

.promo-banner-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
    padding: 40px;
    margin-left: auto;
    margin-right: 10%;
    color: #fff;
}

.promo-banner-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo-banner-content p {
    font-size: 0.82rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ============================================
   CATEGORY GRID (6 columns like Tiffany)
   ============================================ */
.category-browse {
    padding: 60px 0;
}

.category-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    text-align: center;
}

.category-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-gray);
}

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

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

.category-card h4 {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* ============================================
   SERVICE SECTION (3 columns - store, gift, etc.)
   ============================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
}

.service-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--tiffany-light);
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.04);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--bg);
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-gray);
}

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

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

.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.product-badge {
    padding: 3px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-new {
    background: var(--tiffany);
    color: #fff;
}

.badge-best {
    background: var(--primary);
    color: #fff;
}

.badge-sale {
    background: var(--error);
    color: #fff;
}

.product-card-info {
    padding: 14px 4px;
    text-align: center;
}

.product-card-category {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block;
}

.product-card-name {
    font-size: 0.88rem;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-card-name a:hover {
    color: var(--tiffany-dark);
}

.product-card-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-card-price {
    font-size: 0.85rem;
    font-weight: 500;
}

.product-card-price .original-price {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 300;
}

/* ============================================
   DIAMOND LOADING OVERLAY
   ============================================ */
.diamond-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.diamond-loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.diamond-loader svg {
    width: 80px;
    height: 80px;
    animation: diamondPulse 1.2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(10, 186, 181, 0.3));
}

.diamond-loader .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--tiffany);
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.diamond-loader .sparkle:nth-child(2) {
    top: -5px;
    left: 50%;
    animation-delay: 0s;
}

.diamond-loader .sparkle:nth-child(3) {
    top: 20%;
    right: -8px;
    animation-delay: 0.3s;
}

.diamond-loader .sparkle:nth-child(4) {
    bottom: 15%;
    right: -5px;
    animation-delay: 0.6s;
}

.diamond-loader .sparkle:nth-child(5) {
    bottom: -5px;
    left: 40%;
    animation-delay: 0.9s;
}

.diamond-loader .sparkle:nth-child(6) {
    top: 20%;
    left: -8px;
    animation-delay: 0.4s;
}

.diamond-loader .sparkle:nth-child(7) {
    bottom: 15%;
    left: -5px;
    animation-delay: 0.7s;
}

.diamond-loader-text {
    margin-top: 24px;
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    animation: fadeInOut 1.5s ease-in-out infinite;
}

.diamond-loader-bar {
    margin-top: 16px;
    width: 120px;
    height: 2px;
    background: var(--border-light);
    border-radius: 1px;
    overflow: hidden;
}

.diamond-loader-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tiffany-light), var(--tiffany), var(--gold));
    border-radius: 1px;
    animation: loaderBar 1.8s ease-in-out infinite;
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.05) rotate(2deg);
    }

    50% {
        transform: scale(0.95) rotate(-2deg);
    }

    75% {
        transform: scale(1.03) rotate(1deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loaderBar {
    0% {
        width: 0%;
        margin-left: 0;
    }

    50% {
        width: 70%;
        margin-left: 15%;
    }

    100% {
        width: 0%;
        margin-left: 100%;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE - New Split Layout
   ============================================ */
.pd-slide-wrapper {
    display: flex;
    min-height: 100vh;
    animation: pdSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes pdSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Left Panel - Sticky */
.pd-left {
    width: 45%;
    flex-shrink: 0;
    position: relative;
}

.pd-left-inner {
    position: sticky;
    bottom: 0;
    top: calc(var(--header-h) + var(--nav-h) + 1px);
    height: calc(100vh - var(--header-h) - var(--nav-h) - 1px);
    overflow-y: auto;
    padding: 28px 40px 40px;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pd-left-inner::-webkit-scrollbar {
    display: none;
}

/* Breadcrumb */
.pd-breadcrumb {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.pd-breadcrumb a {
    transition: color var(--transition);
}

.pd-breadcrumb a:hover {
    color: var(--tiffany-dark);
}

.pd-breadcrumb span {
    margin: 0 4px;
}

.pd-breadcrumb .current {
    color: var(--text);
}

/* Gallery - Main image in right panel */
.pd-gallery-main {
    aspect-ratio: 1;
    background: var(--bg-gray);
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 12px;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.pd-gallery-main img:hover {
    transform: scale(1.03);
}

/* Sub images row on right panel */
.pd-thumbs-row {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition);
    border: 2px solid transparent;
    background: var(--bg-gray);
    flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--tiffany);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brief Info */
.pd-brief {
    margin-bottom: 28px;
}

.pd-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    line-height: 1.4;
}

.pd-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pd-price-area {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.pd-price {
    font-size: 1.4rem;
    font-weight: 500;
}

.pd-original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.pd-material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--tiffany-bg);
    font-size: 0.75rem;
    color: var(--tiffany-dark);
    letter-spacing: 0.02em;
}

.pd-tag-gem {
    background: #FFF8EE;
    color: var(--gold);
}

/* Inquiry CTA */
.pd-inquiry {
    background: var(--bg-gray);
    padding: 28px;
    border-radius: 2px;
}

.pd-inquiry-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.pd-inquiry-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pd-inquiry-btn {
    margin-bottom: 10px;
}

.pd-phone-btn {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

/* Right Panel - Scrollable */
.pd-right {
    flex: 1;
    border-left: 1px solid var(--border-light);
    background: var(--bg-cream);
}

.pd-right-inner {
    padding: 28px 48px 80px;
}

/* Scroll Indicator */
.pd-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 48px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    transition: opacity 0.4s ease;
    position: sticky;
    top: calc(var(--header-h) + var(--nav-h) + 1px);
    background: var(--bg-cream);
    z-index: 10;
    margin: -28px -48px 28px;
    border-bottom: 1px solid var(--border-light);
}

.pd-scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.pd-scroll-line {
    width: 40px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}

.pd-scroll-progress {
    height: 100%;
    width: 0%;
    background: var(--tiffany);
    transition: width 0.1s linear;
}

.pd-scroll-arrow {
    animation: scrollBounce 1.5s ease-in-out infinite;
    display: flex;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* Sections on the right */
.pd-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pd-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pd-section:last-child {
    border-bottom: none;
}

.pd-section-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.pd-section-body {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 2;
}

.pd-section-body ul {
    padding-left: 16px;
}

.pd-section-body li {
    list-style: disc;
    margin-bottom: 6px;
}

/* Info Grid - Shipping & Returns */
.pd-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pd-info-card {
    background: var(--bg);
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
}

.pd-info-icon {
    margin-bottom: 14px;
}

.pd-info-card h4 {
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.pd-info-card ul {
    padding-left: 16px;
}

.pd-info-card li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Care Instructions */
.pd-care-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-care-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.pd-care-item:last-child {
    border-bottom: none;
}

.pd-care-num {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--tiffany);
    min-width: 30px;
    letter-spacing: 0.02em;
}

.pd-care-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Options within new layout */
.pd-options-section .product-options {
    margin-bottom: 0;
}

.product-options {
    margin-bottom: 28px;
}

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

.option-label {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.option-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg);
}

.option-btn:hover,
.option-btn.selected {
    border-color: var(--tiffany);
    background: var(--tiffany);
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.product-actions .btn {
    flex: 1;
}

/* Accordion */
.product-accordion {
    border-top: 1px solid var(--border-light);
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    width: 100%;
    text-align: left;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    color: var(--text-light);
}

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

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 0 18px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.9;
}

.accordion-body-inner ul {
    padding-left: 16px;
}

.accordion-body-inner li {
    list-style: disc;
    margin-bottom: 4px;
}

.related-products {
    padding: 70px 0;
    background: var(--bg-cream);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-hero {
    background: var(--bg-gray);
    padding: 50px 0;
    text-align: center;
}

.category-hero h1 {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.category-hero p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.category-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.8rem;
}

.filter-count {
    color: var(--text-muted);
}

.filter-sort select {
    border: 1px solid var(--border);
    padding: 8px 32px 8px 12px;
    font-family: var(--font-ko);
    font-size: 0.8rem;
    background: var(--bg);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

/* ============================================
   STORE PAGE
   ============================================ */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.store-card {
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.store-card:hover {
    box-shadow: var(--shadow);
}

.store-card-img {
    aspect-ratio: 16/9;
    background: var(--tiffany-light);
    overflow: hidden;
}

.store-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card-body {
    padding: 24px;
}

.store-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.store-flagship-badge {
    display: inline-block;
    background: var(--tiffany);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    letter-spacing: 0.05em;
    margin-left: 8px;
    vertical-align: middle;
}

.store-card-body .store-address {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.store-card-body .store-info-row {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.store-card-body .store-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-form-wrap {
    max-width: 680px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-family: var(--font-ko);
    font-size: 0.85rem;
    transition: border-color var(--transition);
    background: var(--bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--tiffany);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

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

.form-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.purpose-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.purpose-option input {
    display: none;
}

.purpose-option label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 0;
}

.purpose-option input:checked+label {
    background: var(--tiffany);
    color: #fff;
    border-color: var(--tiffany);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

.time-slot:hover,
.time-slot.selected {
    background: var(--tiffany);
    color: #fff;
    border-color: var(--tiffany);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Alert */
.alert {
    padding: 14px 20px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    border: 1px solid;
}

.alert-success {
    background: #f0fff4;
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: #fff5f5;
    border-color: var(--error);
    color: var(--error);
}

/* Reservation Confirm */
.reservation-confirm {
    text-align: center;
    padding: 60px 0;
    max-width: 500px;
    margin: 0 auto;
}

.reservation-confirm .check-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--tiffany);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.reservation-confirm h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.reservation-confirm p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.confirm-details {
    background: var(--tiffany-bg);
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.confirm-details dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    font-size: 0.85rem;
}

.confirm-details dt {
    color: var(--text-muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: var(--tiffany);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-en);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

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

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

.about-img {
    aspect-ratio: 4/5;
    background: var(--bg-gray);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.about-text .about-subtitle {
    font-size: 0.9rem;
    color: var(--tiffany-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 2;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-section {
    padding: 60px 0 80px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: none;
    border-bottom: 2px solid var(--primary);
    font-size: 1.05rem;
    font-family: var(--font-ko);
    background: transparent;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--tiffany);
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
}

.page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    transition: all var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: #f5f5f3;
    color: var(--text);
    padding-top: 50px;
    font-size: 0.78rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    color: var(--text-light);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--tiffany-dark);
}

.footer-col h4 {
    font-size: 0.78rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    font-weight: 500;
}

.footer-col li {
    margin-bottom: 7px;
}

.footer-col a {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--tiffany-dark);
}

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

.footer-contact strong {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.footer-contact span {
    font-size: 0.78rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--tiffany-dark);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

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

.zoom-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* ============================================
   LAYER POPUP
   ============================================ */
.layer-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.layer-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.layer-popup-box {
    background: var(--bg);
    position: relative;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.layer-popup-overlay.active .layer-popup-box {
    transform: scale(1) translateY(0);
}

/* Popup Types */
.layer-popup-fullscreen {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    max-height: 100vh;
}

.layer-popup-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 50vh;
    transform: translateY(100%);
}

.layer-popup-overlay.active .layer-popup-bottom {
    transform: translateY(0);
}

.layer-popup-slide-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    max-height: 100vh;
    width: 400px !important;
    transform: translateX(100%);
}

.layer-popup-overlay.active .layer-popup-slide-right {
    transform: translateX(0);
}

.layer-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.layer-popup-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.layer-popup-content a {
    display: block;
}

.layer-popup-img {
    width: 100%;
    display: block;
}

.layer-popup-body {
    padding: 24px;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-light);
}

.layer-popup-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    background: var(--bg-gray);
}

.layer-popup-footer button {
    flex: 1;
    padding: 14px;
    font-size: 0.78rem;
    color: var(--text-light);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-ko);
    transition: background var(--transition);
}

.layer-popup-footer button:hover {
    background: var(--border-light);
}

.layer-popup-footer button:first-child {
    border-right: 1px solid var(--border-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pd-left {
        width: 42%;
    }

    .pd-left-inner {
        padding: 24px 28px;
    }

    .pd-right-inner {
        padding: 24px 32px 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 56px;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Nav */
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-close-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: var(--bg);
        z-index: 1100;
        flex-direction: column;
        overflow-y: auto;
        transition: left var(--transition);
        box-shadow: var(--shadow-lg);
        border-bottom: none;
        justify-content: flex-start;
    }

    .main-nav.open {
        left: 0;
    }

    .mobile-overlay.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .nav-item>a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.88rem;
    }

    .nav-item>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 10px 16px;
        border-top: none;
    }

    .dropdown ul {
        flex-direction: column;
        gap: 0;
    }

    .dropdown a {
        display: block;
        padding: 8px 0;
    }

    .has-dropdown .dropdown {
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    /* Grids */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Product Detail Mobile */
    .pd-slide-wrapper {
        flex-direction: column;
    }

    .pd-left {
        width: 100%;
    }

    .pd-left-inner {
        position: static;
        height: auto;
        padding: 20px 16px;
        overflow: visible;
    }

    .pd-right {
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .pd-right-inner {
        padding: 20px 16px 60px;
    }

    .pd-title {
        font-size: 1.25rem;
    }

    .pd-info-grid {
        grid-template-columns: 1fr;
    }

    .gift-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gift-card-img {
        aspect-ratio: 16/9;
    }

    .promo-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .promo-panel {
        min-height: 300px;
    }

    .promo-banner-full {
        min-height: 350px;
    }

    .promo-banner-content {
        margin: 0 auto;
        text-align: center;
        padding: 30px 24px;
    }

    .category-grid-6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .about-grid,
    .about-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

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

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hero-content p {
        font-size: 0.82rem;
    }

    .hero-slide-img {
        height: 55vh;
    }

    .section {
        padding: 45px 0;
    }

    .section-header h2 {
        font-size: 1.1rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .top-bar-inner>span {
        font-size: 0.65rem;
    }

    .top-bar-right {
        display: none;
    }

    .category-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .collection-slide {
        flex: 0 0 180px;
    }

    .collection-slide-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-card-info {
        padding: 10px 2px;
    }

    .product-card-name {
        font-size: 0.78rem;
    }

    .product-card-price {
        font-size: 0.78rem;
    }

    .product-card-subtitle {
        display: none;
    }

    .hero-slide-img {
        height: 45vh;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-slide {
        flex: 0 0 150px;
    }

    .collection-slide-img {
        width: 150px;
        height: 150px;
    }
}