* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter;
    text-wrap: balance;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

:root {
    --primary-100: #112C49;
    --primary-200: #1A4170;
    --primary-300: #245797;
    --primary-400: #2E6DBE;
    --primary-500: #5387CC;
    --primary-600: #78A2DA;
    --primary-700: #9DBBE8;
    --primary-800: #C1D4F5;
    --primary-900: #E5ECFB;
    --secondary-100: #DEA9A1;
    --secondary-200: #D69389;
    --secondary-300: #CE7D72;
    --secondary-400: #C6675B;
    --secondary-500: #BE5144;
    --secondary-600: #A3453A;
    --secondary-700: #883931;
    --secondary-800: #6D2E27;
    --secondary-900: #52221D;
    --neutral-100: #F8F9FA;
    --neutral-200: #E9ECEF;
    --neutral-300: #DEE2E6;
    --neutral-400: #CED4DA;
    --neutral-500: #ADB5BD;
    --neutral-600: #6C757D;
    --neutral-700: #495057;
    --neutral-800: #343A40;
    --neutral-900: #212529;
    --accent-success: #28A745;
    --accent-info: #17A2B8;
    --accent-warning: #FFC107;
    --accent-danger: #DC3545;
    --bg-light: #FFFFFF;
    --bg-dark: #121A24;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --sale-badge: #FF5252;
    --new-badge: #4CAF50;
    --discount-highlight: #FDECEC;
    --rating-star: #FFC107;
    --add-to-cart: #246EB9;
    --checkout-button: #A4453C;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate360 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes expandWidth {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

a {
    text-decoration: none;
    color: #fff;
}

li {
    list-style: none;
}

title {
    border-radius: 20px;
}

.shop-btn {
    background-color: #041527;
    color: white;
    border: none;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shop-btn:hover {
    background-color: #051a30;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.63);
}

.shop-btn:hover::before {
    left: 100%;
}

.shop-btn:active {
    transform: translateY(0);
}

button {
    padding: 10px 15px;
    border: none;
    font-size: clamp(0.75rem, 1vw, 1rem);
    color: #041527;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: overlock, julius sans one;
    transition: all .3s ease;
}

button:active {
    transform: translateY(-3PX);
}

body {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 1.5;
    letter-spacing: 1px;
}

.overlay-color {
    background-image: linear-gradient(transparent, #051b33);
}

.overlay-color2 {
    background-image: linear-gradient(#051b3360, #051b3354);
}

section {
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    color: var(--text-dark);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #2f4b6021;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 5px #0415271c;
    transition: transform 0.3s ease-in;
}

.dropdown11 {
    font-family: "Inter", sans-serif;
    position: relative;
}

.dropdown11 .arrow-down {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    display: inline-block;
    vertical-align: middle;
    margin-left: .8rem;
    transition: transform ease-in-out 0.3s;
}

.product-link {
    position: relative;
}

.dropdown11-links {
    position: absolute;
    display: block;
    list-style: none;
}

.dropdown11 li {
    padding: 0px 10px;
    text-align: left;
    height: 0px;
    min-width: -webkit-fill-available;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    color: #fff;
    background-color: #04152738;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(20px);
    transition-duration: 0.2s, 0.4s;
    transition-property: all, background-color;
    white-space: nowrap;
    -webkit-box-shadow: 0px 20px 34px -12px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 20px 34px -12px rgba(116, 116, 116, 0.47);
    box-shadow: 0px 9px 22px -8px rgba(0, 0, 0, 0.72);
}

.dropdown11 li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-wrap: nowrap;
}

.dropdown11 li:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-top: -2px;
    margin-right: 10px;
    border-radius: 10px;
    vertical-align: middle;
    background-color: #ECBBB7;
}

.dropdown11-links li:nth-child(1) {
    transition-delay: 0s, 0s;
    border-radius: 10px 10px 0px 0px;
}

.dropdown11-links li:nth-child(2) {
    transition-delay: 0.1s, 0s;
}

.dropdown11-links li:nth-child(3) {
    transition-delay: 0.2s, 0s;
}

.dropdown11-links li:nth-child(4) {
    transition-delay: 0.3s, 0s;
}

.dropdown11 li:last-child {
    border-radius: 0px 0px 20px 20px;
}

.dropdown11:hover h1 {
    border-radius: 5px 5px 0px 0px;
}

.dropdown11:hover li {
    padding: 10px;
    height: auto;
    opacity: 1;
}

.dropdown11-links li:hover:before {
    background-color: #fff;
}

.dropdown11:hover .arrow-down {
    transform: rotate(90deg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1800px;
    margin: 0 auto;
}

.header.hide {
    transform: translateY(-100%);
}

.nav-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-btns {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(0.5rem, 1vw, 1rem);
}

.ux-btns button {
    background-color: transparent;
}

.ux-btns button i {
    color: var(--primary-700);
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    padding-inline: 5px;
    transition: all .3s ease;
}

.ux-btns button i:hover {
    color: var(--primary-500);
}

.logo {
    width: clamp(40px, 5vw, 80px);
    height: clamp(40px, 5vw, 80px);
    border-radius: 50%;
    padding: 6px;
    border: 1px solid var(--secondary-100);
    display: flex;
    background-color: var(--primary-100);
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: clamp(0.5rem, 1vw, 1rem);
    border-radius: 6px 6px 20px 20px;
    box-shadow: 0px 9px 22px -8px rgba(0, 0, 0, 0.589);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    transition: all .3s ease;
    font-weight: 700;
    padding-inline: .5rem;
    text-align: left;
}

.nav-links a:hover {
    color: #DEA9A1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 27px;
    height: 2px;
    background-color: var(--primary-900);
    transition: all 0.3s ease;
}

.login-button {
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 16px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background-color: #041527ea;
    }

    .nav-links.active {
        display: flex;
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Active state for nav links */
.nav-links a.active {
    color: #DEA9A1 !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DEA9A1;
    border-radius: 2px;
}

/* Active state for dropdown */
.dropdown11 a.active {
    color: #DEA9A1 !important;
}

/* Mobile menu active states */
@media screen and (max-width: 850px) {
    .nav-links a.active::after {
        bottom: -2px;
        left: 10px;
        width: calc(100% - 20px);
    }
}

/* Hover effects that work with active state */
.nav-links a:not(.active):hover {
    color: #DEA9A1;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Smooth transitions for all states */
.nav-links a {
    transition: all 0.3s ease;
    position: relative;
}

/* Active state with background for mobile */
@media screen and (max-width: 850px) {
    .nav-links a.active {
        background-color: rgba(222, 169, 161, 0.1);
        border-radius: 5px;
        padding: 10px 15px;
        margin: 2px 0;
    }
    
    .nav-links a.active::after {
        display: none;
    }
}

/* Dropdown active state */
.dropdown11:hover a.active {
    background-color: transparent;
}

/* Hero Section */

.hero {
    width: 100%;
    height: 100dvh;
    background-color: #04152798;
    position: relative;
    align-content: center;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    background-image: url(/images/asset-images/Hero\ background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: .47;
    background-attachment: fixed;
    mix-blend-mode: multiply;
}

.hero-content {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
    height: 100%;
}

.heroImage {
    width: clamp(5.5rem, 5.5vw, 7.5rem);
    height: clamp(5.5rem, 5.5vw, 7.5rem);
    border-radius: 50%;
    padding: .5rem;
    background-color: #ECBBB7;
    box-shadow: 10px 20px 50px #0415276b;
    margin-inline: auto;
    display: flex;
    align-content: center;
    justify-content: center;
}

.heroImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.hero-content::before {
    display: none;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(/images/asset-images/colorful-composition-with-sponges-rags-gloves-detergent-general-cleaning-cleaning-service-concept.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    opacity: .9;
}

@media (max-width: 480px) {
    .hero-content::before {
        display: block;
    }

    .hero-content {
        background-color: #041527af;
    }
}

.hero-cont-detail {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    padding-top: clamp(1rem, 2vw, 2rem);
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.21);
}

.hero-cont-detail h1 {
    font-family: overlock, julius sans one;
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 4.5rem);
    letter-spacing: 0%;
    color: #ECBBB7;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
}

.hero-cont-detail p {
    font-weight: 900;
    font-size: clamp(1.25rem, 5vw, 2rem);
    letter-spacing: 0%;
    color: #fff;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-cont-detail p span {
    font-family: overlock, julius sans one;
    font-style: italic;
    color: #ECBBB7;
    animation: shimmer 2s infinite;
}

.hero-cont-detail small {
    font-size: clamp(14px, 2.3vw, 18px);
    letter-spacing: 0%;
    display: block;
    color: #fff;
    font-family: poppins, inter;
    font-weight: 200;
    animation: fadeInDown 1s ease-out;
}

.hero-cont-detail span {
    color: #ECBBB7;
    font-weight: 500;
    animation: shimmer 2s infinite;
}

.hero-cont-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 1px 20px 50px #041527;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #D69389;
    padding-top: clamp(2rem, 4vw, 3.75rem);
}

.hero-cont-img img {
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero {
        box-shadow: none;
    }

    .hero-cont-img img {
        width: 150px;
    }
}

.about-banner {
    background: linear-gradient(135deg, #041527 0%, #0a2540 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 187, 183, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 3s linear infinite;
}

.friendly-products {
    width: 100%;
    min-height: 100vh;
    color: #ECBBB7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 40px;
    justify-content: center;
    -webkit-box-shadow: -1px -17px 83px -12px rgba(4, 21, 39, 0.78);
    -moz-box-shadow: -1px -17px 83px -12px rgba(4, 21, 39, 0.78);
    box-shadow: -1px -17px 83px -12px rgba(4, 21, 39, 0.78);
    position: relative;
    z-index: 1;
    background-color: #041527;
    gap: clamp(1rem, 2vw, 2rem);
}

.friendly-products-title-content {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.friendlyIcon {
    margin-bottom: 20px;
    animation: rotate360 3s ease-in-out infinite;
}

.friendlyIcon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(236, 187, 183, 0.5));
}

.title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.title h2 span {
    color: #ECBBB7;
    position: relative;
    font-family: overlock, julius sans one;
}

.title h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ECBBB7, transparent);
    animation: shimmer 2s infinite;
}

.sub-title p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #777;
}

.sub-title span {
    font-style: italic;
    font-family: overlock, julius sans one;
    font-weight: 600;
    color: #ECBBB7;
    animation: shimmer 2s infinite;
}

.product-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    width: 100%;
    max-width: 1400px;
    padding: clamp(1rem, 2vw, 2rem);
}

@supports (grid-template-columns: subgrid) {
    .product-scroll {
        grid-auto-rows: 1fr;
    }
}

.cardContainer {
    display: flex;
    flex-direction: column;
    max-width: var(--card-max-width);
    margin: 0 auto;
    width: 100%;
}

.product-card {
    border-radius: 20px;
    background-color: rgba(47, 75, 96, 0.13);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-700), var(--add-to-cart));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.product-imageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, 0.03);
    min-height: 200px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 59, 48, 0.9);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
}

.product-card[data-badge="sale"] .product-badge {
    display: block;
}

.product-imageContainer img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    border-radius: 6px;
}

.product-card:hover .product-imageContainer img {
    transform: scale(1.07);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.product-title h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #777;
    font-style: italic;
    margin-bottom: 0.75rem;
    font-family: 'Overlock', julius sans one;
}

.product-detail {
    color: #bbb;
    line-height: 1.6;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    margin-block: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #ddd;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffa500;
    font-size: 1rem;
}

.rating-count {
    color: #999;
    font-size: 0.85rem;
}

.product-actions {
    padding: clamp(1rem, 2vw, 1.5rem);
    padding-top: 0;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-price {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--primary-700);
    letter-spacing: -0.5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f9f9f9;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    min-width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9f9f9;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--add-to-cart) 0%, #1557b0 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    font-weight: 600;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1557b0 0%, var(--add-to-cart) 100%);
}

.add-to-cart-btn[aria-busy="true"] {
    pointer-events: none;
    opacity: 0.7;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.wishlist-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    transition: all 0.3s ease;
}

.wishlist-btn.active svg {
    fill: #ff3b30;
    stroke: #ff3b30;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.stock-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.stock-indicator.low-stock {
    color: #ff9800;
}

.stock-indicator.out-of-stock {
    color: #f44336;
}

@media (max-width: 768px) {
    .product-scroll {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .quantity-controls {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .product-scroll {
        grid-template-columns: 1fr;
    }
}

.remove-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 13px 32px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background-color: var(--accent-danger);
}

.cart-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.trash-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.category-detail {
    border: 1px solid red;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.friendly-btn {
    margin-block: 1rem;
    text-align: center;
    padding-inline: 20px;
    display: flex;
    justify-content: flex-end;
}

.friendly-btn button {
    background-color: #041527;
    color: #ECBBB7;
    padding: 13px 32px;
    border-radius: 6px;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.friendly-btn button:hover {
    transform: scale(1.05);
    box-shadow: 0px 9px 22px -8px rgba(0, 0, 0, 0.72);
}

@media (max-width: 1024px) {
    .product-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
        padding: 10px;
        gap: 1rem;
        width: 100%;
    }

    .product-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .product-scroll::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

    .cardContainer {
        flex: 0 0 auto;
        width: 100%;
        max-width: calc(100vw - 40px);
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .cardContainer {
        max-width: calc(100vw - 20px);
    }
}

.overview-container {
    max-width: 100%;
    padding-block: clamp(3rem, 5vw, 7rem);
    padding-inline: clamp(1rem, 2vw, 2rem);
    position: relative;
    z-index: 0;
    
}

.overview-container::before {
    content: '';
    position: absolute;
    background-image: url(/images/asset-images/seamless-vector-pattern-with-outline-cleaning-icons-background-with-hand-drawn-house-work-elements_522613-442.avif);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-attachment: fixed;
    opacity: .2;
    mix-blend-mode: multiply;
}

.overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #041527;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding-block: clamp(3rem, 5vw, 7rem);
    padding-inline: clamp(1rem, 2vw, 2rem);
    max-width: 1280px;
    margin-inline: auto;
    border-top-left-radius: clamp(3rem, 5vw, 6.25rem);
    border-bottom-right-radius: clamp(3rem, 5vw, 6.25rem);
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    color: #D69389;
    box-shadow: 0px 20px 50px #041527;
    gap: 2rem;
    position: relative;
    animation: scaleIn 0.8s ease-out .3s both;
    
}

@media (max-width: 768px) {
    .overview {
        display: block;
    }
}

.overview-title {
    align-content: center;
    margin-bottom: 1rem;
}

.overview-title h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    display: block;
}

.overview-title span {
    font-family: overlock, julius sans one;
    font-style: italic;
    color: #ECBBB7;
    animation: shimmer 2s infinite;
}

.overview-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
    border-radius: 20px;
}

.overview-subtitle p {
    border-radius: 20px;
}

footer {
    background-color: #041527;
    color: #fff;
    padding-top: clamp(3rem, 5vw, 7rem);
}

.wrapper {
    max-inline-size: 100%;
    background-color: #061b31b6;
}

.footer-grid {
    max-width: 1280px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: clamp(1rem, 2vw, 2rem);
    padding-inline: clamp(1rem, 2vw, 2rem);
}

.footer-col {
    padding-block: clamp(1rem, 2vw, 2rem);
}

.footer-col-content {
    color: #777;
}

.footer-col-content ul li,
.footer-col-content ul li a {
    color: #777;
    transition: 0.3s;
    margin-bottom: 8px;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
    color: #ECBBB7;
}

.footer-title {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-title h3 {
    font-family: overlock, julius sans one;
    color: #ECBBB7;
}

.footer-logo {
    margin-block: 1rem;
    border: 1px solid #fff;
    width: clamp(40px, 5vw, 80px);
    height: clamp(40px, 5vw, 80px);
    display: flex;
    border-radius: 50%;
    padding: 6px;
}

.footer-logo img {
    width: 100%;
    object-fit: contain;
}

/* Business Hours & Why Choose Us specific styling */
.footer-hours ul li,
.footer-features ul li {
    margin-bottom: 8px;
    /* color: rgba(255, 255, 255, 0.9); */
    line-height: 1.5;
}

.footer-hours strong {
    color: #ECBBB7;
    font-weight: 600;
}

.footer-features ul li {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-col {
        text-align: center;
        padding-block: 1rem;
    }
    
    .footer-logo {
        margin-inline: auto;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        padding-inline: 1rem;
    }
    
    .footer-title h3 {
        font-size: 1.1rem;
    }
    
    .footer-col-content ul li {
        font-size: 0.9rem;
    }
}

/* Main footer section (copyright area) */
.main-footer {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

.credits {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

.credits a {
    color: #ECBBB7;
    text-decoration: none;
    transition: 0.3s;
}

.credits a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .main-footer {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .credits {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.main-footer {
    max-inline-size: 1280px;
    font-size: .8rem;
    color: #777;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: clamp(1rem, 2vw, 2rem);
    padding-inline: clamp(1rem, 2vw, 2rem);
}

.main-footer span a {
    color: #777;
    font-style: italic;
    animation: shimmer 2s infinite;
}

.cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    transition: right 0.5s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-block: 1rem;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow: 0px 4px 5px #0415271c;
}

.cart.open {
    right: 0;
}

.cart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1.5rem;
    padding-block: 10px;
    margin-bottom: 20px;
}

.cart-title h1 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #FFF;
    width: 100%;
    text-align: left;
    border-radius: 4px;
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
    text-align: center;
}

.cart-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: .31rem;
}

.cart-product-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cart-product {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.cart-product-title h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.cart-product-price p {
    margin: 0;
    font-weight: 600;
    width: 100%;
    display: flex;
    color: goldenrod;
}

.cart-product-btn i {
    align-self: flex-start;
    background-color: var(--accent-danger);
    color: var(--text-light);
    border: 1px solid var(--accent-danger);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    font-size: 1rem;
}

.cart-product-arrows {
    border-radius: 4px;
    display: flex;
    height: 100%;
    align-items: flex-end;
}

.cart-product-arrows span {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #3d90fc;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #fff;
}

.cart-product-arrows i {
    cursor: pointer;
    color: #121A24;
    font-size: 1rem;
}

.cart-checkout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 1.5rem;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-block: 1.5rem;
}

.subtotal-title {
    margin: 0;
    font-size: 1.1rem;
}

.total {
    margin: 0;
    font-weight: 600;
}

.cart-checkout-btn {
    width: 100%;
    padding: 13px 32px;
    background-color: var(--add-to-cart);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.empty-cart-message {
    display: flex;
    width: 100%;
    font-family: inter;
    color: var(--accent-danger);
    justify-content: center;
}

.empty-cart-message p {
    animation: shimmer 2s infinite;
    font-size: 1.2rem;
}

.cart-checkout-btn:hover {
    opacity: 0.9;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .cart {
        width: 100%;
        right: -100%;
        align-items: center;
    }

    .cart-content {
        min-width: auto;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 576px) {
    .cart-product-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-product-arrows {
        margin-top: 1rem;
        align-self: center;
    }
}

#checkoutBody {
    color: var(--text-color);
    background-color: var(--background-darker);
    line-height: 1.6;
    width: 100%;
    height: 100vh;
    place-content: center;
}

.container {
    width: 100%;
    max-width: 112.5rem;
    margin-inline: auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

header {
    background-color: #04152710;
    color: white;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(0.9375rem);
    padding: 0.5rem;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

.logo h1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
}

.nav-btns {
    display: flex;
    gap: 0.9375rem;
}

.nav-btns button {
    background: none;
    border: none;
    color: var(--primary-700);
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    cursor: pointer;
    position: relative;
}

.checkout-breadcrumb {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(236, 187, 183, 0.05);
    border-radius: 0 0 25px 25px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.breadcrumb-step {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 30px;
}

.breadcrumb-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--text-light);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-700);
    color: var(--text-light);
    margin-right: 10px;
    font-weight: bold;
}

.active .step-number {
    background-color: #ECBBB7;
    color: var(--primary-100);
}

.breadcrumb-step .step-label {
    font-size: 0.9rem;
    color: #999;
}

.active .step-label {
    color: #ECBBB7;
    font-weight: 600;
}

.checkout-section {
    padding: 20px 0;
    max-width: 81.25rem;
    margin: 0 auto;
}

.checkout-title {
    margin-bottom: 20px;
    color: #ECBBB7;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    text-transform: uppercase;
    font-family: 'overlock', julius sans one;
    font-size: 1.5rem;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.checkout-form {
    display: none;
    padding: 15px;
    background-color: var(--background-dark);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-form.active {
    display: block;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h3 {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #112C49;
    color: #fff;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 2px rgba(236, 187, 183, 0.3);
    transition: box-shadow 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-summary {
    padding: 15px;
    background-color: var(--background-dark);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    color: #fff;
}

.order-summary h3 {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-700);
}

.item-info {
    display: flex;
    align-items: center;
}

.item-quantity {
    background-color: #ECBBB7;
    color: var(--primary-100);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 10px;
}

.order-totals {
    margin-top: 20px;
    border-top: 2px solid var(--primary-700);
    padding-top: 15px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-total {
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--primary-700);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.back-btn,
.next-btn,
.place-order-btn {
    padding: 13px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-btn {
    background-color: transparent;
    color: #ECBBB7;
    border: 1px solid #ECBBB7;
}

.next-btn,
.place-order-btn {
    background-color: var(--accent-color);
    color: white;
}

.next-btn:hover,
.place-order-btn:hover {
    background-color: #3d8b40;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .breadcrumb-step {
        padding: 0 15px;
    }

    .breadcrumb-step .step-label {
        font-size: 0.8rem;
    }
}

.breadcrumbNav {
    margin-bottom: 0.9375rem;
    padding: 0.5rem 0.625rem;
    background-color: #ecbbb70a;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(0.9375rem);
    border-radius: 0 0 1.5625rem 1.5625rem;
    overflow-x: auto;
    white-space: nowrap;
}

@media (min-width: 36rem) {
    .breadcrumbNav {
        margin-bottom: 1.25rem;
        padding: 0.625rem 0;
    }
}

.breadcrumbNav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbNav li {
    margin-right: 0.625rem;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.breadcrumbNav li:after {
    content: "/";
    margin-left: 0.625rem;
}

.breadcrumbNav li:last-child:after {
    display: none;
}

.breadcrumbNav a {
    text-decoration: none;
    color: var(--primary-700);
}

.breadcrumbNav .current {
    font-weight: bold;
    color: #fff;
}

@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select {
        font-size: 16px;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: 0 0 0 62.5rem #112C49 inset;
}

.product-catalog {
    padding: 40px 20px;
    background-color: #041527;
    color: white;
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 8rem;
}

.catalog-title {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.catalog-title h2 span {
    color: #ECBBB7;
    position: relative;
    font-family: overlock, julius sans one;
}

.catalog-title h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ECBBB7, transparent);
    animation: shimmer 2s infinite;
}

.catalog-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #777;
}

.catalog-subtitle span {
    font-style: italic;
    font-family: overlock, julius sans one;
    font-weight: 600;
    color: #ECBBB7;
    animation: shimmer 2s infinite;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.catalog-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.8rem;
    color: #ECBBB7;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Overlock', julius sans one;
    border-bottom: 2px solid #ECBBB7;
    padding-bottom: 10px;
    display: inline-block;
}

.product-item {
    background: rgba(47, 75, 96, 0.13);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.product-name {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ECBBB7;
    margin-bottom: 15px;
    font-family: 'Overlock', julius sans one;
}

.product-price {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 20px;
}

.item-image {
    width: 100%;
    height: 250px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.size {
    font-size: 1.2rem;
    color: #bbb;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.item-image:hover img {
    transform: scale(1.15);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    animation: fadeInDown 1s ease-out;
}

.product-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .product-item {
        padding: 20px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .item-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .product-item {
        padding: 15px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .item-image {
        height: 200px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.catalog-info {
    background: rgba(47, 75, 96, 0.13);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border-top-left-radius: clamp(3rem, 5vw, 6.25rem);
    border-bottom-right-radius: clamp(3rem, 5vw, 6.25rem);
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(236, 187, 183, 0.2);
    animation: fadeInDown 1s ease-out;
}

.catalog-info h3 {
    color: #ECBBB7;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Overlock', julius sans one;
}

.catalog-info p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ECBBB7;
}

.distributor-package {
    background: linear-gradient(135deg, rgba(236, 187, 183, 0.1), rgba(26, 65, 112, 0.2));
    border-radius: 20px;
    border-top-left-radius: clamp(3rem, 5vw, 6.25rem);
    border-bottom-right-radius: clamp(3rem, 5vw, 6.25rem);
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(236, 187, 183, 0.2);
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.delivery-tag {
    color: #ECBBB7;
}

.distributor-package h3 {
    color: #ECBBB7;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Overlock', julius sans one;
    animation: shimmer 2s infinite;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 20px;
    animation: shimmer 2s infinite;
}

.package-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 2rem;
}

.package-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    color: #bbb;
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .package-items {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

