/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* GLOBAL BUTTON */
.btn {
    background: #F8C8DC;
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(248, 200, 220, 0.4);
}

/* ACTIVE NAV LINK */
.nav-menu a.active {
    color: #F8C8DC;
    font-weight: 700;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #F8C8DC;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: #F8C8DC;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: #F8C8DC;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F8C8DC;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE NAVIGATION */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url("rewind images/Pink Shine.gif") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 80px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ABOUT SECTION */
.about-content {
    max-width: 700px;
    margin: 120px auto 60px;
    text-align: center;
    background: #f5f0dc; /* light beige */
    padding: 0 20px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
/* ABOUT SECTION BACKGROUND */
.about-section {
    background: #f5f0dc; /* light beige */
    padding: 120px 20px;
    width: 100%;
}

/* ABOUT CONTENT CARD */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #D8A7B1; /* soft pinkish tone */
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* CATALOG SECTION */
.catalog {
    padding: 80px 20px;
    text-align: center;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.catalog-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.catalog-item:hover {
    transform: translateY(-8px);
}

.catalog-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* SHOP PAGE */
.shop {
    padding: 160px 20px 80px;
    text-align: center;
}

.shop-content {
    max-width: 700px;
    margin: 0 auto 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: 0.4s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

/* PRODUCT VIEW */
.product-view {
    padding: 160px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-gallery img {
    width: 100%;
    border-radius: 20px;
}

.product-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
/* QUANTITY SELECTOR */
.quantity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem 0 1.5rem;
}

.qty-btn {
    background: linear-gradient(135deg, #F8C8DC, #F5F5DC);
    color: #333;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s ease;
}

.qty-btn:hover {
    opacity: 0.8;
}

#quantity {
    width: 55px;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid #eee;
    font-size: 16px;
}

.price {
    font-size: 1.3rem;
    color: #F8C8DC;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #eee;
    margin-bottom: 1rem;
}

input[type="file"] {
    margin: 1rem 0;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #F8C8DC, #F5F5DC);
    color: #333;
    border-radius: 12px;
}
/* LONG AESTHETIC BUTTONS (DESIGN TYPE) */
.long-btn {
    width: 100%;
    padding: 14px;
    margin: 8px 0;
    background: #f7e6ef;
    border: 2px solid #f3d1df;
    border-radius: 14px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: 0.2s ease;
}

.long-btn:hover {
    background: #fbeff5;
}

.long-btn.active {
    background: #F8C8DC;
    border-color: #f4a9c2;
    color: #333;
    transform: scale(1.02);
}

/* COLOR BUTTONS (CIRCLES) */
.color-buttons button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #eee;
    cursor: pointer;
    transition: 0.2s ease;
}

.color-buttons button:hover {
    transform: scale(1.1);
}

.color-buttons button.active {
    outline: 3px solid #F8C8DC;
    transform: scale(1.15);
}

.product-details label {
    display: block;
    margin-top: 15px;
}

/* RAINBOW BUTTON */
.rainbow-btn {
    margin-bottom: 15px;
}
.special-section {
    margin-bottom: 20px;
}

/* CUTE GIRLY RAINBOW BUTTON */
.rainbow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #f4c6d8;
    cursor: pointer;
    background: conic-gradient(
        #ff9ecb,
        #ffd1dc,
        #fff6a9,
        #b8e8fc,
        #d7b4f3,
        #ff9ecb
    );
    transition: 0.25s ease;
    box-shadow: 0 0 8px rgba(248, 200, 220, 0.4);
}

.rainbow-btn:hover {
    transform: scale(1.1);
}

.rainbow-btn.active {
    outline: 3px solid #F8C8DC;
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(248, 200, 220, 0.7);
}

/* TOGGLE BUTTONS (OMBRE + CHARMS) */
.toggle-btn {
    padding: 10px 20px;
    background: #ffe6f2;
    border-radius: 20px;
    border: 2px solid #f4c6d8;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: 8px;
}

.toggle-btn:hover {
    background: #fdd9ea;
}

.toggle-btn.active {
    background: #F8C8DC;
    border-color: #f4a9c2;
    transform: scale(1.05);
}

/* UPLOAD BOX WITH ICON */
.upload-box {
    border: 2px dashed #F8C8DC;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    color: #d48aa8;
    margin-bottom: 1rem;
}

.upload-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.upload-box input {
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    cursor: pointer;
}


/* CONTACT PAGE */
#contact {
    padding-top: 160px;
    background: #f5f0dc; /* light beige */
    padding-bottom: 80px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fff;
    transition: 0.3s ease;
}

/* Focus effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4a373; /* soft brown */
    box-shadow: 0 0 8px rgba(212, 163, 115, 0.3);
    outline: none;
}

/* Button spacing */
.btn {
    margin-top: 10px;
}

/* POLICY PAGE AESTHETIC */
.policy {
    padding: 60px 20px;
    background: #fdf7fa; /* soft pink-beige */
    display: flex;
    justify-content: center;
}

.policy-content {
    max-width: 800px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #f3d9e6;
    animation: fadeIn 0.6s ease;
}

/* Cute fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Title */
.policy-content h2 {
    text-align: center;
    font-size: 32px;
    color: #d26fa0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Section Titles */
.policy-content h3 {
    margin-top: 30px;
    font-size: 20px;
    color: #b85c8a;
    background: #fcebf3;
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
}

/* Paragraphs */
.policy-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-top: 10px;
}

/* Links */
.policy-content a {
    color: #d26fa0;
    font-weight: 600;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
    .policy-content {
        padding: 25px;
        border-radius: 16px;
    }

    .policy-content h2 {
        font-size: 26px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .policy-content p {
        font-size: 15px;
    }
}


/* FOOTER */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    font-size: 2rem;
    color: #F8C8DC;
}

/* CART ICON */
.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: #F8C8DC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F8C8DC;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CART DRAWER OVERLAY */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1500;
}

/* CART DRAWER */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* hidden */
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 2000;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #F8C8DC;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-total {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f3d1df;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-info h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.cart-item-info p {
    margin: 3px 0;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-view {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}
/* MOBILE NAV FIX */
@media (max-width: 768px) {

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
        z-index: 1000;
        background: #fff;
        border-bottom: 2px solid #f3d9e6;
    }

    .logo h1 {
        font-size: 20px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        display: none;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #d26fa0;
        border-radius: 5px;
        transition: 0.3s;
    }

    .cart-icon {
        position: absolute;
        right: 60px;
        top: 18px;
        font-size: 20px;
    }
}
