/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.badge {
    font-weight: 600;
    letter-spacing: 0.02em;
}

body {
    background: #fff;
    overflow-x: hidden;
    padding-top: 120px;
}

/* ===== HEADER ===== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* TOP HEADER */

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.logo span {
    color: #d6a86c;
}

.logo small {
    font-size: 12px;
    color: #888;
}

/* SEARCH */

.search-box {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.search-box input {
    width: 60%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #d6a86c;
    box-shadow: 0 0 10px rgba(214, 168, 108, 0.3);
}

.search-box button {
    position: absolute;
    right: 22%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

/* CONTACT */

.contact {
    display: flex;
    gap: 40px;
    font-size: 13px;
    color: #777;
}

.contact span {
    display: block;
    font-weight: 600;
    color: #222;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
}

/* MENU */

.menu {
    display: flex;
    gap: 50px;
    list-style: none;
}

.menu li {
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

/* underline animation */
.menu li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d6a86c;
    transition: 0.3s;
}

.menu li:hover::after {
    width: 100%;
}

.menu li:hover {
    color: #d6a86c;
}

.highlight {
    font-weight: 600;
}

/* ICONS */

.icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.icons div {
    cursor: pointer;
    transition: 0.3s;
}

.icons div:hover {
    transform: translateY(-3px) scale(1.1);
    color: #d6a86c;
}

/* CART */

.cart {
    position: relative;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d6a86c;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 50%;
}

/* HAMBURGER */

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* DUMMY CONTENT */

.dummy {
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ===== FOOTER ===== */

.footer {
    background: #1d1d1f;
    color: #86868b;
    padding: 80px 100px 40px 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-col h2,
.footer-col h3 {
    color: #f5f5f7;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #d6a86c;
}

.newsletter {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.newsletter button {
    padding: 10px;
    border: none;
    background: #d6a86c;
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* ===== MOBILE ===== */

@media(max-width:768px) {

    body {
        padding-top: 140px;
    }

    .top-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .contact {
        display: none;
    }

    .search-box input {
        width: 100%;
    }

    .search-box button {
        right: 10px;
    }

    .hamburger {
        display: block;
    }

    .menu {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .footer {
        padding: 40px 20px;
    }

}

/* BACKGROUND PARALLAX EFFECT */

.hero {
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/12.jpeg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Creates the parallax effect */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* SLIDES CONTAINER */
.slides {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    gap: 40px;
    position: relative;
    z-index: 2;
    /* Ensures it stays on top of background */
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* APPLE LEVEL IMAGE CONTAINER */
.hero-img-container {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* APPLE LEVEL IMAGE STYLING */
.hero-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-container:hover .hero-img {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* RIGHT SIDE */
.hero-right {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
}

/* TEXT ANIMATION */
.hero-right h1 {
    font-size: 48px;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInText 0.8s ease forwards;
}

.hero-right h1 span {
    color: #c89b63;
}

.offer {
    color: #c89b63;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInText 1.2s ease forwards;
    animation-delay: 0.2s;
}

.shop-btn {
    padding: 12px 25px;
    border: 1px solid #444;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.shop-btn:hover {
    background: #444;
    color: #fff;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #444;
    cursor: pointer;
}

.dot.active {
    background: #444;
}

/* ARROW STYLES */
.arrow-left,
.arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.arrow-left:hover,
.arrow-right:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* TEXT ANIMATION KEYFRAME */
@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */

@media(max-width:992px) {

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-img-container {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .hero-img {
        max-height: 300px;
    }

    .hero-right h1 {
        font-size: 28px;
    }

    .offer {
        font-size: 12px;
    }

    .arrow-left,
    .arrow-right {
        font-size: 24px;
    }

}


/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 80px 100px;
    background: #f8f8f8;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.product-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.product-header h2:hover {
    color: #c89b63;
}

.product-filter button {
    padding: 12px 24px;
    border: 1px solid #ccc;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.product-filter button:hover,
.product-filter button.active {
    background-color: #c89b63;
    color: white;
    border-color: #c89b63;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Ensures all product cards have the same height */
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Uniform Image Size */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 200px;
    /* Fixed height for uniformity */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Maintain aspect ratio without stretching */
    transition: transform 0.4s ease;
}

/* BADGES (New, Sale, Sold) */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c89b63;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.badge.new {
    background-color: #4CAF50;
}

.badge.sale {
    background-color: #FF5722;
}

.badge.sold-out {
    background-color: #BDBDBD;
    text-transform: uppercase;
}

/* PRODUCT INFO */
.product-info {
    text-align: center;
    margin-top: 20px;
    flex: 1;
    /* Ensures the info section takes up remaining space */
}

.product-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.product-info h4:hover {
    color: #c89b63;
}

.rating {
    font-size: 18px;
    color: #ffbc00;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #BDBDBD;
    font-size: 16px;
    margin-right: 5px;
}

/* ADD TO CART BUTTON */
.add-to-cart {
    padding: 12px 25px;
    border: none;
    background-color: #f0f0f5;
    color: #1d1d1f;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 980px;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #1d1d1f;
    color: white;
    transform: scale(0.98);
}

/* DISABLED ADD TO CART BUTTON */
.add-to-cart[disabled] {
    background-color: #f0f0f0;
    color: #BDBDBD;
    cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-header h2 {
        font-size: 28px;
    }
}

/* ===== SHOP NOW BUTTON ===== */
.shop-now-btn {
    padding: 14px 38px;
    background-color: #1d1d1f;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 980px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    margin-left: auto;
    border: none;
}

.shop-now-btn:hover {
    background-color: #333;
    transform: scale(0.98);
}

.shop-now-btn:focus {
    outline: none;
}

/* ===== PROMO SECTION ===== */
.promo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 120px 140px;
    background: #EDE7DF;
    border-radius: 30px;
    margin: 80px 60px;

    position: relative;
    overflow: hidden;

    transition: all 0.5s ease;
}

/* ===== FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TEXT ===== */
.promo-content {
    max-width: 520px;
}

.promo-sub {
    font-size: 14px;
    letter-spacing: 2px;
    color: #c89b63;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 64px;
    font-weight: 500;
    color: #3a3a3a;
    line-height: 1.1;
    margin-bottom: 40px;

    transition: 0.4s;
}

/* ===== BUTTON ===== */
.promo-btn {
    display: inline-block;
    padding: 18px 40px;

    border: 1px solid #333;
    border-radius: 10px;

    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;

    position: relative;
    overflow: hidden;

    transition: 0.3s;
}

.promo-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.promo-btn:hover::after {
    left: 100%;
}

.promo-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== IMAGE BOX ===== */
.promo-image-box {
    background: #E4D3BD;
    padding: 40px;
    border-radius: 30px;

    width: 420px;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    /* IMPORTANT FOR PARALLAX */
    transform: translateY(var(--parallax, 0));

    transition: transform 0.6s ease, box-shadow 0.4s ease;
}

/* GLOW */
.promo-image-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(200, 155, 99, 0.35), transparent 70%);
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* IMAGE */
.promo-image-box img {
    max-width: 100%;
    height: auto;
    z-index: 2;

    transition: transform 0.6s ease;
}

/* ===== HOVER EFFECTS ===== */
.promo-section:hover {
    transform: translateY(-6px);
}

.promo-section:hover .promo-title {
    transform: translateY(-4px);
}

.promo-image-box:hover {
    transform: translateY(var(--parallax, 0)) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.promo-image-box:hover img {
    transform: scale(1.05) translateY(-4px);
}

/* ===== CURSOR LIGHT ===== */
.promo-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
    pointer-events: none;

    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .promo-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px;
        gap: 40px;
    }

    .promo-title {
        font-size: 42px;
    }

    .promo-image-box {
        width: 100%;
        height: auto;
    }
}


/* ===== OFFER SECTION (GLASS WHITE) ===== */
.offer-section {
    background: linear-gradient(135deg, #f7f5f2, #ede7df);
    padding: 140px 20px;
    margin: 80px 60px;
    border-radius: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
}

/* ===== GLASS CARD ===== */
.offer-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;

    padding: 50px;
    width: 100%;
    max-width: 500px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===== TITLE ===== */
.offer-title {
    font-size: 44px;
    font-weight: 500;
    color: #2f2f2f;
    margin-bottom: 30px;
}

.offer-title span {
    color: #c89b63;
}

/* ===== FORM ===== */
.offer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUT STYLE (STRIPE LIKE) */
.offer-form input {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;

    transition: all 0.25s ease;
}

.offer-form input:focus {
    border-color: #c89b63;
    box-shadow: 0 0 0 4px rgba(200, 155, 99, 0.1);
}

/* BUTTON */
.offer-form button {
    padding: 16px;
    border-radius: 10px;
    border: none;

    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    transition: 0.3s;
}

.offer-form button:hover {
    background: #c89b63;
    transform: translateY(-2px);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    margin-top: 20px;
    color: #2e7d32;
    font-weight: 500;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING ICONS ===== */
.floating-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    animation: float 6s infinite ease-in-out;
}

.icon1 {
    top: 20%;
    left: 10%;
}

.icon2 {
    bottom: 15%;
    right: 12%;
    animation-delay: 2s;
}

.icon3 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .offer-section {
        margin: 40px 20px;
        padding: 100px 20px;
    }

    .offer-container {
        padding: 30px;
    }

    .offer-title {
        font-size: 32px;
    }
}

/* ===== GLASS SECTION ===== */
.offer-section {
    position: relative;
    margin: 80px 60px;
    padding: 120px 20px;
    border-radius: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(20px);

    overflow: hidden;
}

/* ===== BIGGER FLOATING ICONS ===== */
.floating-icon {
    position: absolute;
    font-size: 60px;
    /* BIGGER */
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.icon1 {
    top: 10%;
    left: 10%;
}

.icon2 {
    bottom: 15%;
    right: 12%;
    animation-delay: 2s;
}

.icon3 {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* ===== CONTENT ===== */
.offer-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.offer-title {
    font-size: 44px;
    font-weight: 500;
    color: #2f2f2f;
    margin-bottom: 40px;
}

.offer-title span {
    color: #c89b63;
}

/* ===== FORM ===== */
.offer-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ===== FLOATING LABEL INPUT ===== */
.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 18px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    outline: none;
}

/* LABEL */
.input-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
}

/* FLOAT EFFECT */
.input-group input:focus+label,
.input-group input:valid+label {
    top: -8px;
    left: 12px;
    font-size: 11px;
    background: #fff;
    padding: 0 6px;
    color: #c89b63;
}

/* ===== BUTTON ===== */
.offer-form button {
    position: relative;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: #333;
    color: white;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
}

/* ===== SPINNER ===== */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* LOADING STATE */
button.loading .btn-text {
    opacity: 0;
}

button.loading .spinner {
    display: block;
}

/* ===== SUCCESS ===== */
.success {
    animation: pop 0.6s ease;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== CONFETTI ===== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: red;
    top: 0;
    animation: fall 3s linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== WISHLIST BUTTON ===== */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #fff;
}

/* ===== FEATURES SECION (APPLE PRO) ===== */
.features-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background: #fff;
    margin-top: -20px;
}

.feature-box {
    text-align: center;
    max-width: 250px;
    padding: 20px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #86868b;
    line-height: 1.4;
}

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase {
    padding: 80px 100px;
    background: #f5f5f7;
    text-align: center;
}

.category-showcase h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    text-align: left;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-content .btn {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.category-content .btn:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .features-section {
        flex-direction: column;
        align-items: center;
    }

    .category-showcase {
        padding: 60px 20px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FEATURES MARQUEE ===== */
.features-marquee {
    width: 100%;
    background: #1d1d1f;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 14px;
    font-weight: 500;
    margin: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: #c89b63;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== STATS DATA SECTION ===== */
.stats-section {
    padding: 80px 100px;
    background: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(248, 248, 248, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.stat-text {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

@media(max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stat-number {
        font-size: 32px;
    }
}