/* PREMIUM LUXURY EXTENSIONS */
:root {
    --bg-dark: #090816;
}
.bg-light { background-color: #F7F7F7; }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }

/* NEW UNIQUE HERO BANNER */
.hero-unique {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-bg-1.jpg') center/cover no-parallax;
    background-attachment: fixed;
    overflow: hidden;
}
.hero-unique::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(9,8,22,0.9) 0%, rgba(9,8,22,0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}
.hero-content .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #da1705;
    margin-bottom: 25px;
    display: block;
    animation: fadeInUp 1s ease forwards;
}
.hero-content .title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}
.hero-content .desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}
.hero-content .btn-wrapper {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* CATEGORY CARDS */
.category-grid.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-grid.six-cols {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    aspect-ratio: 3/4;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.category-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}
.cat-img-wrapper {
    width: 100%;
    height: 100%;
}
.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .cat-img-wrapper img {
    transform: scale(1.08);
}
.cat-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px 20px 30px;
    background: linear-gradient(transparent, rgba(9, 8, 22, 0.9));
    color: var(--white);
    text-align: center;
}
.cat-overlay h3 { font-size: 1.5rem; letter-spacing: 1px; }

/* PRODUCT GRID MODIFIERS */
.product-grid.four-cols { grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-grid.six-cols { grid-template-columns: repeat(6, 1fr); gap: 15px; }

/* STORY BANNER */
.story-banner {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 0;
    max-width: 100%;
}
.story-content {
    flex: 1;
    padding: 100px;
    text-align: center;
}
.story-content h2 { font-size: 2.5rem; margin-bottom: 30px; }
.story-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; }
.story-image {
    flex: 1;
    height: 600px;
}
.story-image img {
    width: 100%; height: 100%; object-fit: cover;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: #090816 !important;
    padding: 150px 50px !important;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.testimonial-card {
    background: #121121;
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: var(--transition);
    text-align: center;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    background: #1a192e;
}
.stars { color: #f1c40f; margin-bottom: 25px; font-size: 1.2rem; }
.review { font-size: 1.15rem; font-style: italic; margin-bottom: 25px; line-height: 1.8; opacity: 0.9; }
.author { font-family: 'Inter', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #da1705; font-weight: 700; }

/* SMALL CARD FOR 6-COL GRID */
.small-card .product-img {
    height: 220px;
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 10px;
}
.small-card .product-info {
    padding: 15px 0 5px;
}

/* FOLLOW BUTTON */
.follow-btn {
    background: #da1705 !important;
    color: #fff !important;
    padding: 20px 60px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s ease !important;
    border: none !important;
    display: inline-block !important;
    box-shadow: 0 10px 40px rgba(218, 23, 5, 0.3) !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}
.follow-btn:hover {
    background: #000 !important;
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

/* PRODUCT DETAIL PAGE */
.product-detail-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}
.product-gallery {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}
.product-info-detail {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}
.gallery-main {
    background: #f9f9f9;
    border-radius: var(--radius-soft);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}
.product-info-detail h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--text-color);
}
.product-info-detail .price {
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 30px;
}
.product-info-detail p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.add-to-cart-form {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}
.qty-input {
    width: 80px;
    height: 55px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
}
.qty-input:focus {
    outline: none;
    border-color: var(--accent-red);
}
.add-to-cart-btn {
    flex: 1;
    height: 55px;
    background: var(--text-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}
.add-to-cart-btn:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 23, 5, 0.3);
}

/* CART SPECIFIC */
.cart-item-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}
.remove-btn {
    background: transparent;
    border: none;
    color: var(--accent-red);
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}
.remove-btn:hover {
    text-decoration: underline;
}

/* CART SUMMARY */
.cart-summary {
    background: #f9f9f9;
    padding: 35px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-color);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
}
.summary-row.total {
    font-size: 1.4rem;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

/* CHECKOUT FORM */
.checkout-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}
.checkout-form input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.checkout-form input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(218,23,5,0.1);
}

/* RESPONSIVE UPDATES */
@media (max-width: 1200px) {
    .category-grid.six-cols, .product-grid.six-cols { grid-template-columns: repeat(3, 1fr); }
    .category-grid.four-cols, .product-grid.four-cols { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .story-banner { flex-direction: column; }
    .story-content { padding: 50px 20px; }
    .hero-content .title { font-size: 3.5rem; }
    .product-detail-container { flex-direction: column; gap: 30px; }
    .product-gallery { position: relative; top: 0; }
    .main-img { height: 400px; }
}
@media (max-width: 600px) {
    .category-grid.six-cols, .product-grid.six-cols { grid-template-columns: repeat(2, 1fr); }
    .category-grid.four-cols, .product-grid.four-cols { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
