* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    color: #435961;
    line-height: 1.6;
}

:root {

    --background: rgba(248, 253, 254, 1);
    --foreground: rgba(7, 20, 24, 1);

    --card: rgba(255, 255, 255, 1);
    --card-foreground: rgba(7, 20, 24, 1);

    --popover: rgba(255, 255, 255, 1);
    --popover-foreground: rgba(7, 20, 24, 1);

    --primary: rgba(0, 145, 185, 1);
    --primary-foreground: rgba(255, 255, 255, 1);

    --primary-light: rgba(91, 189, 218, 1);
    --primary-dark: rgba(0, 100, 142, 1);

    --secondary: rgba(228, 245, 251, 1);
    --secondary-foreground: rgba(7, 20, 24, 1);

    --muted: rgba(228, 241, 245, 1);
    --muted-foreground: rgb(67 89 97);

    --accent: rgba(162, 216, 233, 1);
    --accent-foreground: rgba(7, 20, 24, 1);

    --destructive: rgba(212, 9, 36, 1);
    --destructive-foreground: rgba(255, 255, 255, 1);

    --border: rgba(208, 225, 231, 1);
    --input: rgba(228, 241, 245, 1);

    --ring: rgba(0, 145, 185, 1);

    --silver: rgba(177, 185, 188, 1);
    --silver-light: rgba(225, 229, 231, 1);

    --chart-1: rgba(0, 145, 185, 1);
    --chart-2: rgba(91, 189, 218, 1);
    --chart-3: rgba(162, 216, 233, 1);
    --chart-4: rgba(0, 100, 142, 1);
    --chart-5: rgba(225, 229, 231, 1);

    --sidebar: rgba(245, 249, 251, 1);
    --sidebar-foreground: rgba(7, 20, 24, 1);
    --sidebar-primary: rgba(0, 145, 185, 1);
    --sidebar-primary-foreground: rgba(255, 255, 255, 1);
    --sidebar-accent: rgba(228, 241, 245, 1);
    --sidebar-accent-foreground: rgba(7, 20, 24, 1);
    --sidebar-border: rgba(208, 225, 231, 1);
    --sidebar-ring: rgba(0, 145, 185, 1);

}

.inter-light {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.inter-medium {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.inter-bold {
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

.cormorant-regular {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.cormorant-semibold {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Responsive container widths */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1536px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}


@media (min-width:576px) {

    .col-sm-1 {
        width: 8.33%;
    }

    .col-sm-2 {
        width: 16.66%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33%;
    }

    .col-sm-5 {
        width: 41.66%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33%;
    }

    .col-sm-8 {
        width: 66.66%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33%;
    }

    .col-sm-11 {
        width: 91.66%;
    }

    .col-sm-12 {
        width: 100%;
    }

}


@media (min-width:768px) {

    .col-md-1 {
        width: 8.33%;
    }

    .col-md-2 {
        width: 16.66%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33%;
    }

    .col-md-5 {
        width: 41.66%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33%;
    }

    .col-md-8 {
        width: 66.66%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.33%;
    }

    .col-md-11 {
        width: 91.66%;
    }

    .col-md-12 {
        width: 100%;
    }

}

@media (min-width:992px) {

    .col-lg-1 {
        width: 8.33%;
    }

    .col-lg-2 {
        width: 16.66%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.33%;
    }

    .col-lg-5 {
        width: 41.66%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.33%;
    }

    .col-lg-8 {
        width: 66.66%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.33%;
    }

    .col-lg-11 {
        width: 91.66%;
    }

    .col-lg-12 {
        width: 100%;
    }

}

/* Margin All */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

/* Margin Top */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Margin Left (Start) */
.ms-0 {
    margin-left: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

/* Margin Right (End) */
.me-0 {
    margin-right: 0;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 3rem;
}

/* Margin X (Left + Right) */
.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
}

/* Margin Y (Top + Bottom) */
.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Auto margin */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Padding All */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

/* Padding Top */
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

/* Padding Left */
.ps-0 {
    padding-left: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

/* Padding Right */
.pe-0 {
    padding-right: 0;
}

.pe-1 {
    padding-right: 0.25rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.pe-3 {
    padding-right: 1rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pe-5 {
    padding-right: 3rem;
}

/* Padding X */
.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Padding Y */
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}
.inline-flex-center{
    display: inline-flex;
    align-items: center;
}
.fs-12 {
    font-size: 0.75rem !important
}

.fs-13 {
    font-size: 0.8125rem !important
}

.fs-14 {
    font-size: 0.875rem !important
}

.fs-15 {
    font-size: 0.9375rem !important
}

.fs-16 {
    font-size: 1rem !important
}

.fs-17 {
    font-size: 1.0625rem !important
}

.fs-18 {
    font-size: 1.125rem !important
}

.fs-19 {
    font-size: 1.1875rem !important
}

.fs-20 {
    font-size: 1.25rem !important
}

.fs-21 {
    font-size: 1.3125rem !important
}

.fs-22 {
    font-size: 1.375rem !important
}

.fs-23 {
    font-size: 1.4375rem !important
}

.fs-24 {
    font-size: 1.5rem !important
}

/* btn */
.btn {
    font-size: 14px;
    border: 1px solid var(--primary);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid var(--primary);
    color: var(--primary);
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.text-primary {
    color: var(--primary) !important;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid-2-lg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .grid-2-md {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .grid-2-sm {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-4-lg {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 1.5rem;
}

.flex-1 {
    flex: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

a,
a:hover {
    text-decoration: none;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--primary);
    font-family: "Cormorant Garamond", serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: "Cormorant Garamond", serif;
    color: var(--foreground);
}

.logo-text span:first-child {
    font-size: 20px;
    font-weight: bold;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 1px;
}

.logo-text span:last-child {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}

/* Desktop Nav */

.nav-links {
    display: flex;
    gap: 3px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
    color: var(--muted-foreground)
}

.nav-links a:hover {
    color: var(--primary);
    background-color: color-mix(in oklab, var(--primary) 5%, transparent);
}

/* Actions */

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-btn {
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #fff;
}

.search-btn:hover {
    background-color: color-mix(in oklab, var(--primary) 5%, transparent);
    color: var(--primary);
}

.enquire-btn {
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Menu Button */

.menu-btn {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: 0.3s;
    z-index: 49;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.mobile-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-enquire {
    margin-top: 20px;
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
}

/* Responsive */

@media(max-width:992px) {

    .nav-links,
    .actions {
        display: none;
    }

    .menu-btn {
        display: block;
    }

}

.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: color-mix(in oklab, var(--primary) 60%, transparent);
}

.silder-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.container {
    margin: 0 auto;
    padding: 0 1rem;
}

.text-content {
    max-width: 40rem;
}

.subtitle {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    backdrop-filter: blur(1rem);
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.sub-content {
    color: var(--muted-foreground);
    font-size: 16px;
}

.title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.value-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.hr-line-title {
    background-color: var(--primary);
    width: 64px;
    height: 2px;
    margin: auto;
    border-radius: 5px;
}

.description {
    color: hsl(0, 0%, 85%);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}


.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

.btn-slider {
    border: 1px solid hsla(0, 0%, 100%, 0.5);
    color: white;
    background: transparent;
    backdrop-filter: blur(1rem);
}

.btn-slider:hover {
    background: hsla(0, 0%, 100%, 0.1);
}

.arrow-right {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.slide.active .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide.active .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide.active .cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(1rem);
    transition: all 0.3s;
    z-index: 20;
}

.nav-arrow:hover {
    background: hsla(0, 0%, 100%, 0.2);
}
.nav-arrow .material-symbols-outlined{
    font-size: 30px;
    line-height: 45px;
}
.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

@media (min-width: 768px) {
    .prev {
        left: 2rem;
    }

    .next {
        right: 2rem;
    }
}

.dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 20px;
    border: none;
    background: hsla(0, 0%, 100%, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover,
.dot.active {
    background: white;
    width: 2rem;
}

.slide-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: hsl(0, 0%, 60%);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 20;
}

.slide-counter .current {
    color: white;
    font-weight: 600;
}

.bg-lightcyan {
    background-color: color-mix(in oklab, var(--secondary) 60%, transparent);
}

.bg-secondary {
    background-color: #e4f5fb !important;
}

.sub-title {
    letter-spacing: 3px;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--foreground);
}

.main-title-big {
    font-size: 48px;
}

.text-muted {
    color: var(--muted-foreground);
}

.fnt-18 {
    font-size: 18px;
}

.lh-1-6 {
    line-height: 1.6;
}

.counter-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.category-image {
    aspect-ratio: 4/5;
    position: relative;
    width: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, oklch(0.20 0.10 220), rgba(59, 130, 246, 0.3), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
}

.category-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: rgba(255, 255, 255, 0.8);
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.category-card:hover .explore-link {
    gap: 0.5rem;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image-container {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.1);
}

.product-image-container-3-3 {
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quick-view {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    height: 5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}

.product-card:hover .quick-view {
    opacity: 1;
}

.quick-view span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-info {
    padding: 1rem;
}

.category-tag {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    transition: color 0.3s ease;
    font-family: "Cormorant Garamond", serif;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.meta-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.4);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.original-price {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: line-through;
}

.product-divider {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-tag {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.promo-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--primary);
}

.promo-date {
    color: #6b7280;
}

.icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

.offer-card {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.offer-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.offer-badge-wrapper {
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: 10;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-badge-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.offer-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.offer-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
}

.offer-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.offer-tag-amount {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.offer-tag-amount span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
}

.offer-content {
    padding: 1.5rem;
}

.offer-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
    transition: color 0.3s ease;
}

.offer-description {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.offer-validity-icon {
    width: 1rem;
    height: 1rem;
    fill: var(--primary);
    flex-shrink: 0;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease;
    white-space: nowrap;
}

.offer-card:hover .offer-link {
    gap: 0.5rem;
}

.offer-link-icon {
    width: 1rem;
    height: 1rem;
}

.offer-badge .material-symbols-outlined,
.offer-validity .material-symbols-outlined {
    font-size: 16px;
}

.offer-validity .material-symbols-outlined {
    color: var(--primary);
}

.why-section {
    position: relative;
    padding: 6rem 1.5rem;
    color: #ffffff;
    overflow: hidden;
    background-color: #002942;
}

.why-section-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 80% 20%, white 0%, transparent 50%);
}

.why-container {
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.why-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
}

.why-badge-number {
    font-size: 48px;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
    color:
        color-mix(in oklab, #fff 20%, transparent);
}

@media (min-width: 768px) {
    .why-title {
        font-size: 2.25rem;
    }
}

.why-underline {
    width: 4rem;
    height: 2px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-item {
    text-align: center;
}

.why-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.why-item:hover .why-icon-wrapper {
    background: rgba(255, 255, 255, 0.16);
}

.why-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.why-item-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.why-item-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    fill: var(--primary);
    flex-shrink: 0;
}

.testimonial-quote {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.75);
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.6);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: color-mix(in oklab, var(--primary) 10%, transparent);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.testimonial-location {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.cta-section {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background-color: var(--primary);
    color: #ffffff;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 10% 50%, #ffffff 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, oklch(0.75 0.10 220) 0%, transparent 40%);
}

.cta-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    padding-inline: 1rem;
}

.cta-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-text {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.footer {
    background-color: #003856;
    color: #ffffff;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark span {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
}

.footer-logo-subtitle {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li+li {
    margin-top: 0.6rem;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item+.footer-contact-item {
    margin-top: 0.75rem;
}

.footer-contact-icon {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-section {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        height: 380px;
    }
}

.hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            oklch(0.22 0.1 220 / 0.95) 0%,
            oklch(0.25 0.1 220 / 0.8) 50%,
            oklch(0.25 0.1 220 / 0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.breadcrumb {
    margin-bottom: 1.25rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: white;
}

.breadcrumb-separator {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

.stats-section {
    background-color: var(--primary);
    padding-top: 2rem;
    padding-bottom: 2rem;

}

.stats-container {
    margin-inline: auto;
    padding-inline: 1rem;
    max-width: 1280px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 36px;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.image-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-card {
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    background-color: #ffffff;
    border-radius: 0.9rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    padding: 1.5rem;
    max-width: 200px;
    border: 1px solid #d0e1e7;
}

@media (max-width: 640px) {
    .badge-card {
        left: 1rem;
        bottom: -1.25rem;
    }
}

.badge-card-dark {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.badge-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.badge-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 0.25rem;
}

.badge-card-dark .badge-title {
    font-size: 2rem;
}

.badge-sub {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.timeline-wrapper {
    max-width: 64rem;
    margin-inline: auto;
}

.timeline-inner {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d0e1e7;
    left: 2rem;
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-1px);
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 2rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background-color: var(--primary);
    border: 4px solid var(--color-background);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
    transform: translate(-50%, 0.1rem);
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
        transform: translate(-50%, 0.1rem);
    }
}

.timeline-col {
    flex: 1;
    margin-left: 3rem;
}

.timeline-col-empty {
    display: none;
}

@media (min-width: 768px) {
    .timeline-item {
        gap: 0;
    }

    .timeline-col {
        margin-left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-col {
        text-align: right;
        padding-right: 3rem;
    }

    .timeline-item:nth-child(even) .timeline-col {
        padding-left: 3rem;
    }

    .timeline-col-empty {
        display: block;
        flex: 1;
    }
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.value-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #d0e1e7;
    text-align: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    margin-bottom: 1rem;
}

.value-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-block: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);

}

.checklist-item .material-symbols-outlined {
    color: var(--primary);
}

.checklist-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        gap: 1.25rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.gallery-item.offset {
    margin-top: 2rem;
}

.image-wrapper-vertical {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    aspect-ratio: 4 / 5;
}

.image-wrapper-vertical.ratio-5 {
    aspect-ratio: 5/5;
}

.image-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card {
    background-color: var(--color-secondary);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.cta-text {
    max-width: 36rem;
    margin-inline: auto;
}

.bg-lightabout {
    background: #fffafc;
}

.image-column {
    position: relative;
}

.lead-text {
    margin-top: 10px;
    line-height: 1.6;
}

.mission-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--primary);
    color: color-mix(in oklab, #fff 80%, transparent);
}

.since-divider {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.since-divider-line {
    height: 1px;
    flex: 1;
    background-color: #e5e7eb;
}

.since-divider-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-muted);
    white-space: nowrap;
}

.quote-section {
    padding-block: 6rem;
}

.quote-container {
    padding-inline: 1rem;
    text-align: center;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    fill: color-mix(in oklab, var(--primary) 50%, transparent);
    margin-inline: auto;
    margin-bottom: 2rem;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: var(--color-foreground);
    text-wrap: balance;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

.quote-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-line {
    height: 1px;
    width: 3rem;
    background-color: #d0e1e7;
}

.quote-cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-cite-name {
    font-weight: 500;
    color: var(--color-foreground);
}

.quote-cite-separator {
    margin-inline: 0.25rem;
}

.quality-section {
    position: relative;
    padding-block: 6rem;
    /* py-24 */
    color: #ffffff;
    overflow: hidden;
    background-color: oklch(0.25 0.10 220);
}

.quality-bg-radial {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 80% 20%, #ffffff 0%, transparent 50%);
    pointer-events: none;
}

.quality-container {
    position: relative;
    z-index: 1;
    padding-inline: 1rem;
}

@media (min-width: 768px) {
    .quality-container {
        padding-inline: 1.5rem;
    }
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.quality-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.quality-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 768px) {
    .quality-title {
        font-size: 2.5rem;
    }
}

.quality-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.quality-text+.quality-text {
    margin-top: 1rem;
}

.quality-stats-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.quality-stat-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.9rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.quality-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quality-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.quality-image-wrapper {
    position: relative;
}

.quality-image-square {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.6);
    aspect-ratio: 1 / 1;
}

.quality-image-square img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.quality-badge {
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    backdrop-filter: blur(12px);
    color: #ffffff;
}

@media (max-width: 640px) {
    .quality-badge {
        left: 1rem;
        bottom: -1.75rem;
        padding: 1.5rem;
    }
}

.quality-badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quality-badge-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.process-grid-wrapper {
    margin: 0 auto;
    padding: 2rem 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.process-card {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #d0e1e7;
    border-radius: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-0.25rem);
}

.process-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color-foreground);
}

.process-text {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.process-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-foreground);
}

.process-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background-color: var(--primary);
    flex-shrink: 0;
}

.purity-grid-wrapper {
    max-width: 64rem;
    /* max-w-5xl */
    margin-inline: auto;
    padding: 2rem 1rem;
}

.purity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* gap-8 */
}

@media (min-width: 768px) {
    .purity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.purity-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    /* rounded-2xl */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    /* p-8 */
    text-align: center;
    backdrop-filter: blur(10px);
    transition: background-color 0.2s ease;
}

.purity-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.purity-value {
    font-size: 3rem;
    /* text-5xl */
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.purity-label {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.purity-desc {
    font-size: 0.875rem;
    color: color-mix(in oklab, #fff 70%, transparent);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.purity-chip {
    display: inline-block;
    background-color: color-mix(in oklab, #fff 20%, transparent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--color-chip-text);
}

.accordion {
    width: 100%;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    overflow: hidden;
    transition: background-color 0.2s ease;
}

.accordion-item.is-open {
    background-color: color-mix(in srgb, #f3f4f6 50%, #ffffff 50%);
}

.accordion-header {
    margin: 0;
}

.accordion-trigger {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    border-radius: 0.5rem;
}

.accordion-trigger:focus-visible {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.accordion-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #9ca3af;
    transition: transform 0.2s ease;
    margin-top: 0.15rem;
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0 1.5rem 0.75rem;
    display: none;
}

.accordion-content-inner {
    padding-bottom: 1rem;
}

.DontMissOut-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .DontMissOut-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.offer-card {
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.offer-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(-0.25rem);
}

.offer-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.offer-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-media img {
    transform: scale(1.05);
}

.offer-media-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid transparent;
    white-space: nowrap;
}

.offer-badge-icon {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.missout-title {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

@media (min-width: 768px) {
    .missout-title {
        font-size: 1.875rem;
    }
}

.offer-body {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .offer-body {
        padding: 2rem;
    }
}

.offer-text {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #0f172a;
}

.offer-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-meta-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--primary);
}

.offer-terms {
    background-color: color-mix(in oklab, var(--secondary) 50%, transparent);
    border-radius: 0.9rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.offer-terms-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.offer-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.offer-terms-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-terms-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.offer-terms-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 999px;
    background-color: var(--primary);
    flex-shrink: 0;
    display: inline-block;
}

.moreSavings-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* gap-6 */
}

@media (min-width: 768px) {
    .moreSavings-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .moreSavings-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.moreSavings-card {
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.moreSavings-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-0.25rem);
}

.moreSavings-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.moreSavings-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.moreSavings-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    border-radius: 0.45rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    background-color: #f3f4f6;
    color: #0f172a;
    border: 1px solid transparent;
}

.moreSavings-body {
    padding: 1.25rem;
    /* p-5 */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.moreSavings-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.moreSavings-tagline {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.moreSavings-expiry {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.moreSavings-expiry-icon {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}

.moreSavings-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.moreSavings-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem;
    flex: 1;
}

.moreSavings-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    padding: 0 0.75rem;
    height: 2rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.moreSavings-button:hover {
    background-color: #a2d8e9;
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.why-icon {
    font-size: 48px;
    color: color-mix(in oklab, #fff 70%, transparent)
}

.why-para {
    color: color-mix(in oklab, #fff 70%, transparent)
}

.subscribe-form {
    max-width: 28rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .subscribe-form {
        flex-direction: row;
    }
}

.subscribe-input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.12);
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-inline: 2rem;
    padding-block: 0.5rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    background-color: #ffffff;
    color: var(--primary);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.subscribe-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.3);
}

.subscribe-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.contact-card {
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #d0e1e7;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 2.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.field-input,
.field-textarea {
    width: 100%;
    min-width: 0;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: transparent;
    padding: 0.35rem 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder,
.field-textarea::placeholder {
    color: var(--color-muted);
}

.field-input:focus-visible,
.field-textarea:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.field-input {
    height: 2.25rem;
}

.field-textarea {
    min-height: 4rem;
    padding-block: 0.5rem;
    resize: vertical;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    height: 2.25rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding-inline: 1rem;
    cursor: pointer;
    background-color: var(--primary);
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
    background-color: color-mix(in oklch, var(--primary) 90%, white 10%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.contact-button:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.4);
    outline-offset: 2px;
}

.contact-button-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Top grid: contact info cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    /* gap-4 */
    margin-bottom: 0.5rem;
    /* for mb-8 combined with section gap */
}

@media (min-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-card {
    background-color: #ffffff;
    ;
    border-radius: 1rem;
    /* rounded-2xl */
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    /* p-6 */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-0.25rem);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-card-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-card-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 1rem;
}

.contact-link {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary);
}

/* Address highlight card */
.address-card {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    /* bg-primary/10 */
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    /* p-8 */
    margin-bottom: 0.5rem;
}

.address-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.address-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.address-title {
    margin: 0 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.address-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Map panel */
.map-panel {
    position: relative;
    border-radius: 1rem;
    background-color: var(--secondary);
    height: 18rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-panel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    color: transparent;
}

.map-panel-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-panel-pin {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.map-panel-pin-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.map-panel-title {
    margin: 0;
    font-weight: 600;
    color: var(--color-foreground);
}

.map-panel-subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.shopsidebar {
    width: 100%;
    max-width: 16rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .shopsidebar-inner {
        position: sticky;
        top: 6rem;
    }
}

@media (max-width: 768px) {
    .shopsidebar {
        max-width: 100%
    }
}

.shopsidebar-section {
    margin-bottom: 1.75rem;
}

.shopsidebar-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.shopsidebar-search-wrap {
    position: relative;
}

.shopsidebar-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.shopsidebar-search-input {
    width: 100%;
    height: 2.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: rgba(148, 163, 184, 0.12);
    padding: 0.35rem 0.75rem 0.35rem 2.25rem;
    font-size: 0.875rem;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shopsidebar-search-input::placeholder {
    color: #6b7280;
}

.shopsidebar-search-input:focus-visible {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.category-btn-count {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background-color: var(--bg-muted);
}

.category-btn--active {
    background-color: var(--primary);
    color: #ffffff;
}

.category-btn--active .category-btn-count {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.category-btn:not(.category-btn--active):hover {
    background-color: rgba(59, 130, 246, 0.06);
    color: var(--primary);
    transform: translateX(1px);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.15s ease;
}

.filter-option:hover span {
}

.filter-option input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
}

.shopsidebar-offers {
    background-color: color-mix(in oklab, var(--primary) 5%, transparent);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 0.9rem;
    padding: 1rem;
}

/* Main content header */
.shopmain {
    flex: 1;
    min-width: 0;
}

.shopmain-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .shopmain-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.results-count {
    font-size: 0.85rem;
    color: #6b7280;
}

.results-count strong {
    font-weight: 600;
}

.shopmain-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 11rem;
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sort-select span {
    white-space: nowrap;
}

.sort-select svg {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.view-toggle {
    display: none;
}

@media (min-width: 640px) {
    .view-toggle {
        display: inline-flex;
        border-radius: 0.6rem;
        border: 1px solid #e5e7eb;
        overflow: hidden;
    }

    .view-toggle-btn {
        padding: 0.55rem;
        border: none;
        background: transparent;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.15s ease, color 0.15s ease;
    }

    .view-toggle-btn svg {
        width: 1rem;
        height: 1rem;
    }

    .view-toggle-btn--active {
        background-color: var(--primary);
        color: #ffffff;
    }

    .view-toggle-btn:not(.view-toggle-btn--active) {
        color: #6b7280;
    }

    .view-toggle-btn:not(.view-toggle-btn--active):hover {
        background-color: var(--bg-muted);
    }
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.product-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: var(--shadow-soft);
    transform: translateY(-0.2rem);
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: rgba(148, 163, 184, 0.1);
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.15s ease;
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: scale(1);
}

.product-wishlist svg {
    width: 1rem;
    height: 1rem;
    color: rgba(15, 23, 42, 0.7);
}

.product-wishlist--active svg {
    color: var(--danger);
    fill: var(--danger);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.6);
}

.product-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 5rem;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-body {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.55rem;
}

.product-meta-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 999px;
    background-color: rgba(148, 163, 184, 0.7);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
}

.product-price-original {
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: line-through;
}

.product-offer-row {
    margin-top: 0.75rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.7rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.product-offer-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background-color: var(--primary);
}

.product-offer-secondary {
    color: #6b7280;
}

/* List view */
.products-grid--list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products-grid--list .product-card {
    display: flex;
    flex-direction: row;
    height: 11rem;
}

.products-grid--list .product-media {
    flex: 0 0 9rem;
    aspect-ratio: auto;
    height: 100%;
}

.products-grid--list .product-body {
    flex: 1;
    padding: 1rem 1.1rem;
}

@media (max-width: 639px) {
    .products-grid--list .product-card {
        flex-direction: column;
        height: auto;
    }

    .products-grid--list .product-media {
        height: 12rem;
        flex-basis: auto;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 3.5rem;
    font-size: 0.85rem;
}

.pagination-btn,
.pagination-page {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 0.35rem 1rem;
    height: 2.25rem;
    min-width: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:hover:not([disabled]),
.pagination-page:hover {
    background-color: var(--bg-muted);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.pagination-page--active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: transparent;
}

.breadcrumb-bar {
    background-color: color-mix(in oklab, var(--secondary) 50%, transparent);
    border-bottom: 1px solid #d0e1e7;
}

.breadcrumb-container {
    padding: 0.9rem 0rem;
}

.breadcrumb-nav {
    font-size: 0.85rem;
}

.breadcrumb-nav .breadcrumb-list {
    gap: 0.35rem;
}

.breadcrumb-nav .breadcrumb-list .breadcrumb-link, .breadcrumb-nav .breadcrumb-list .breadcrumb-separator, .breadcrumb-nav .breadcrumb-list .breadcrumb-current{
    color: #002942;
}
.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.breadcrumb-link {
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-current {
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-main {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(148, 163, 184, 0.18);
    border: 1px solid var(--border);
}

.gallery-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
    transition: transform 0.45s ease;
}

.gallery-main:hover .gallery-main-img {
    transform: scale(1.05);
}

.gallery-sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #fb2c36;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1))
}

.gallery-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: none;
    background-color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.15s ease, transform 0.1s ease;
}

.gallery-arrow-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.gallery-arrow-btn--prev {
    left: 1rem;
}

.gallery-arrow-btn--next {
    right: 1rem;
}

.gallery-main:hover .gallery-arrow-btn {
    opacity: 1;
}

.gallery-arrow-btn:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.03);
}

.gallery-zoom-btn {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: none;
    background-color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.gallery-zoom-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.gallery-zoom-btn:hover {
    background-color: #ffffff;
    transform: scale(1.03);
}

.gallery-counter {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
}

.gallery-thumbs {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    padding-bottom: 0.35rem;
    overflow-x: auto;
}

.gallery-thumb {
    position: relative;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid var(--border);
    background-color: var(--bg-secondary);
    padding: 0;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.gallery-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.gallery-thumb:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.gallery-thumb--active {
    border-color: var(--primary);
}

.gallery-thumb--active:hover {
    transform: translateY(0);
}

.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background-color: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background-color: rgba(148, 163, 184, 0.9);
    border-radius: 999px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-code {
    font-size: 0.85rem;
    color: #6b7280;
}

.product-code span {
    font-weight: 500;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
        padding-block: 10px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
}

.product-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    height: 1.6rem;
    padding: 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ef4444;
    background-color: #fee2e2;
    border-radius: 0.4rem;
    border: 1px solid #fecaca;
    white-space: nowrap;
}

.product-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.product-offer-box {
    background-color: color-mix(in oklab, var(--primary) 5%, transparent);
    border-radius: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.1rem 1.2rem;
}

.product-offer-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-offer-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-offer-icon-wrap svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
}

.product-offer-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.product-offer-text {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-block: 1.3rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 1.6rem;
}

@media (max-width: 480px) {
    .product-specs {
        grid-template-columns: 1fr;
    }
}

.product-spec {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.product-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #6b7280;
}

.product-spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
}

.product-spec-value--success {
    color: #00a63e;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-features-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.product-features-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (min-width: 640px) {
    .product-features-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.product-feature-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.product-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-block: 0.8rem;
}

.product-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-badge-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-badge-icon-wrap svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
}

.product-badge-text-title {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    color: var(--foreground);
}

.product-badge-text-sub {
    font-size: 0.7rem;
    color: #6b7280;
    margin: 0.1rem 0 0;
}

.product-actions-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.4rem;
}
.product-row-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-row-top a{
    color: var(--primary);
}
.product-icon-btn{
        width: 36px;
    height: 36px;
    border: 0;
    padding: 7px;
    border-radius: 50px;
    color: var(--muted-foreground);
}
@media (min-width: 640px) {
    .product-actions-main {
        flex-direction: row;
    }
}

 .tabs-section {
      margin-top: 5rem;
    }

    .tabs {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }

    .tabs-list {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 2rem;
      width: 100%;
      border-bottom: 1px solid var(--border);
    }

    .tabs-trigger {
      position: relative;
      padding: 0 0 0.95rem;
      font-size: 1rem;
      font-weight: 500;
      border: none;
      background: transparent;
      color: var(--text-main);
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.15s ease;
    }

    .tabs-trigger[aria-selected="false"] {
      color: var(--muted-foreground);
    }

    .tabs-trigger::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background-color: transparent;
      transform: scaleX(0);
      transform-origin: center;
      transition: background-color 0.18s ease, transform 0.18s ease;
    }

    .tabs-trigger[aria-selected="true"]::after {
      background-color: var(--primary);
      transform: scaleX(1);
    }

    .tabs-trigger:focus-visible {
      outline: 2px solid rgba(59, 130, 246, 0.6);
      outline-offset: 3px;
    }

    .tabs-content {
      margin-top: 2rem;
      outline: none;
    }

    .tabs-panel {
      display: none;
    }

    .tabs-panel[aria-hidden="false"] {
      display: block;
    }

    .tabs-panel p {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      color: var(--muted-foreground);
      line-height: 1.75;
    }