/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

p.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.section-padding {
    padding: 4rem 5%;
    text-align: center;
}

/* --- Header & Navigation (1.jpg) --- */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 5%;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #925400; /* Approximate Tanishq color */
}

.search-bar {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
}

.search-bar input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 0 0.5rem;
}

.search-bar i {
    color: #999;
    padding: 0 0.5rem;
    cursor: pointer;
}

.icons i {
    font-size: 1.2rem;
    margin-left: 1.5rem;
    cursor: pointer;
    color: #333;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #925400;
}

/* --- Hero Carousel (1.jpg) --- */
.hero-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-content {
    position: absolute;
    bottom: 15%;
    right: 5%;
    color: #fff;
    text-align: right;
}

.overlay-content h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
}

.overlay-content .presents {
    font-size: 1rem;
    margin-bottom: -10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.overlay-content .floral-bloom {
    font-size: 4rem;
    font-style: italic;
    color: #fff;
}

.overlay-content button {
    background-color: #fff;
    color: #925400;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
}

.carousel-indicators {
    text-align: center;
    padding: 1rem 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #925400;
}


/* --- Tanishq Collections (3.jpg) --- */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-collection, .side-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.main-collection {
    grid-row: span 2;
}

.main-collection img, .side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.side-collections {
    display: grid;
    gap: 20px;
}

.title-overlay {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title-overlay-small {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #333;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* --- Shop by Categories (4.jpg) --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: box-shadow 0.3s;
}

.category-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
}

.category-item p {
    font-weight: 600;
    margin-top: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.view-all {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px; /* Match image height */
    border: 1px solid #ddd;
}

.view-all-content h3 {
    font-size: 3rem;
    color: #925400;
}

.view-all-content a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #333;
}

/* --- Trending Now (5.jpg and 2.jpg) --- */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trending-item {
    text-align: center;
    position: relative;
}

.trending-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.trending-item p {
    margin-top: 0.5rem;
    font-weight: 600;
}

.large-card {
    grid-column: span 1;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
}

.card-content .expert-choice {
    background-color: #925400;
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 3px;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.card-content .like-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    cursor: pointer;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}

.card-content .price {
    color: #925400;
    font-size: 1.1rem;
    font-weight: 700;
}

.choose-look-card {
    grid-column: span 1;
    background-color: #f5f0e8;
    padding: 2rem 1rem;
    text-align: center;
}

.look-slider {
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    height: 300px;
}

.look-slider img {
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform-origin: center;
}

.look-slider img:nth-child(1) { transform: translateX(-50%) rotate(-5deg); z-index: 5; }
.look-slider img:nth-child(2) { transform: translateX(-25%) rotate(-2deg); z-index: 4; }
.look-slider img:nth-child(3) { transform: translateX(0%) rotate(0deg); z-index: 3; }
.look-slider img:nth-child(4) { transform: translateX(25%) rotate(2deg); z-index: 2; }
/* Simplified visual stacking effect */

/* --- Tanishq World (6.jpg) --- */
.world-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.world-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.world-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.3s;
}

.world-item p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* --- New Arrivals (7.jpg) --- */
.new-arrivals {
    background-color: #f7f4f1;
    padding: 6rem 5%;
}

.arrivals-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
    position: relative;
}

.arrivals-header h2 {
    font-size: 2.5rem;
    display: inline-block;
    margin-right: 1rem;
}

.new-items-tag {
    background-color: #925400;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.arrivals-header p {
    margin-top: 1rem;
    color: #666;
}

.arrivals-content {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.arrival-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.arrival-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.arrival-cards-container {
    flex: 1;
    display: flex;
    gap: 20px;
}

.arrival-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.arrival-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arrival-card p {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 600;
    padding: 0.5rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    box-sizing: border-box;
}

/* --- Styling 101 With Diamonds (8.jpg) --- */
.styling-101 {
    background-color: #00458b; /* Deep blue background from the image */
    color: white;
}

.styling-101 h2 {
    color: white;
}

.styling-101 .subtitle {
    color: #bbb;
}

.diamond-style-carousel {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.style-card {
    position: absolute;
    width: 300px;
    height: 400px;
    background-color: #1260a9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-card.active {
    z-index: 10;
    transform: translateZ(50px) rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.style-card.back-1 {
    transform: translateX(-150px) rotateY(10deg);
    opacity: 0.6;
    z-index: 5;
}

.style-card.back-2 {
    transform: translateX(-250px) rotateY(15deg);
    opacity: 0.3;
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}

/* --- Curated For You & Offers (9.jpg) --- */
.curated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.curated-item {
    text-align: center;
}

.curated-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.curated-item p {
    font-weight: 600;
    margin-top: 0.8rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    min-height: 300px;
    padding: 2rem;
    text-align: left;
    border-radius: 8px;
    position: relative;
}

.gift-choice {
    background-color: #fcebeb;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #8c002e; /* Red/Maroon from the ribbon image */
    transform: rotate(45deg);
}

.gift-choice h3 {
    color: #8c002e;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.starting-price {
    font-weight: 600;
    color: #333;
}

.explore-btn {
    background: transparent;
    border: 1px solid #8c002e;
    color: #8c002e;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 20px;
}

.exchange {
    background-color: #fcf8f0;
}

.exchange h3 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.exchange h3 strong {
    color: #925400;
}

.know-more-btn {
    background-color: #925400;
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

/* --- Tanishq Experience (10.jpg) --- */
.tanishq-experience {
    background-color: #f7f7f7;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.exp-item {
    text-align: center;
}

.exp-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.exp-item p {
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* --- Footer (10.jpg) --- */
footer {
    background-color: #8c002e; /* Deep Red/Maroon for footer */
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.qr-download {
    flex: 1;
    max-width: 300px;
}

.qr-download h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.qr-code {
    width: 150px;
    height: 150px;
    background-color: white;
    color: #8c002e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.app-stores i {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.link-group h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info .whatsapp {
    margin-top: 1rem;
}

.contact-icons i {
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 1rem;
}

.footer-social {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.footer-social p {
    font-weight: 600;
    margin-right: 1rem;
}

.footer-social i {
    margin-right: 1rem;
    cursor: pointer;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-bottom .legal-links span {
    margin-left: 1rem;
    cursor: pointer;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1200px) {
    .collection-grid, .category-grid, .trending-grid, .curated-grid, .offers-grid, .experience-grid {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .top-bar {
        flex-wrap: wrap;
    }
    .search-bar {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 1rem 0 0;
    }
    .icons {
        order: 2;
    }
    .main-nav ul {
        justify-content: flex-start;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large-card, .choose-look-card {
        grid-column: span 1;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .side-collections {
        grid-row: auto;
    }

    .category-grid, .curated-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .view-all {
        grid-column: span 2;
    }

    .world-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
    }
    .qr-download {
        max-width: none;
        margin-bottom: 2rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .legal-links span {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .trending-grid, .category-grid {
        grid-template-columns: 1fr;
    }
    .view-all {
        grid-column: span 1;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .overlay-content .floral-bloom {
        font-size: 3rem;
    }
}