:root {
    --premium-purple: #3d1b4f;
    --vivid-purple: #8139b5;
    --accent-gold: #ffcc00;
    --light-lavender: #f8f1ff;
    --white: #ffffff;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --premium-purple1: #8D308E;
    --dark-purple: #2a1236;
    --dark-purple1: #5e1d5f;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-gold1: #FFD700;
    --text-light: #f4f4f4;
    --metallic-gold: #D4AF37;
    /* The professional gold for icons */
    --text-on-purple: #f8f1ff;
    /* Soft off-white for text on purple */
    --metallic-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --gold-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
    --green: #7AA93C;
    --orange: #D4820A;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* This stops the manual sliding */
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    /* Subtle mesh gradient background gives 3D depth */
    /* background: radial-gradient(circle at top left, #ffffff, #150319, #e9d5ff); */
    background-attachment: fixed;
    color: #333;
}


/* All headings default to Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Spans inside headings must inherit the heading font */
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    font-family: inherit;
}

/* All body text defaults to Inter */
p,
a,
li,
span,
label,
input,
button {
    font-family: 'Inter', sans-serif;
}
/* Smooth fade for image swap */
#mainProductImage {
    transition: opacity 0.2s ease-in-out;
}



.product-page {
    background-color: #ffffff;
    /* Light cream background */
    padding: 120px 5% 60px;
    font-family: 'Inter', sans-serif;
}


.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 170px 5% 60px;
    background: #ffffff;
    gap: 60px;
    max-width: auto;
    margin: 0 auto;
}

/* Gallery Styles */
.product-gallery {
    text-align: center;
}

.main-image img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.1));
}

.thumbnail-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* .thumbnails img {
    width: 80px;
    padding: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
} */

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border: 2px solid #eee;
    margin: 0 5px;
    border-radius: 8px;
}

.thumbnails img.active {
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

/* Info Panel Styles */
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 25px;
}

.product-description {
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Selectors & Buttons */
.packsize-selector {
    margin-bottom: 30px;
}

.size-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
/* Normal State: White background, Purple text */
.size-btn {
    padding: 10px 25px;
    border: 1px solid var(--orange);
    background: #ffffff !important;
    /* Forces background to be white */
    color: var(--orange) !important;
    /* Forces text to be purple */
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Active State: Purple background, White text */
.size-btn.active {
    background: #000000 !important;
    /* Purple when selected */
    color: #ffffff !important;
    /* White text when selected */
    border-color: var(--orange) !important;
}

/* Hover State: Only happens on buttons that ARE NOT active */
.size-btn:hover:not(.active) {
    background: var(--orange) !important;
    /* Light tint on hover */
    color: #ffffff !important;
}
/* Container styling */
.purchase-actions {
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

.purchase-actions p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
}

/* The Button Styling */
.amazon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;

    /* Background Gradient (Yellow to Gold) */
    background: linear-gradient(to bottom, #f7dfa5 0%, #f0c14b 100%);

    /* Shape and Border */
    border: 1px solid #a88734;
    border-radius: 8px;
    padding: 8px 15px;
    min-width: 150px;

    /* Text Styling */
    color: #111;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Shadow for depth */
    box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset, 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
}

/* The "Buy Now" Text */
.amazon-btn span {
    margin-right: 10px;
}

/* Creating the Purple Arrow Icon with Code */
.amazon-btn::after {
    content: '➔';
    /* Or use an SVG/Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b1f50;
    /* Deep purple from your design */
    color: #f0c14b;
    /* Yellow icon color */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
}

/* Hover State */
.amazon-btn:hover {
    background: linear-gradient(to bottom, #f5d78e 0%, #eeb933 100%);
    border-color: #9c7e31;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Click State */
.amazon-btn:active {
    background: #f0c14b;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}
/* Specs Table */
.specs-table {
    margin-top: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.spec-item {
    width: 48%;
    font-size: 14px;
    color: #555;
}

.spec-item span {
    font-weight: 700;
    color: #000;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    gap: 20px;
    max-width: auto;
    margin: 0px auto 0;
    padding: 30px 20px;
    text-align: center;
}

.indicator .icon-box {
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-info-panel {
        text-align: center;
    }

    .size-btns,
    .purchase-actions {
        justify-content: center;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}





/*======product page====*/



/* --- Catalog Section Base --- */

.premium-product-catalog {
    /* background-color: #f3e9cc; */
    /* Exact cream color from reference */
/* background: linear-gradient(135deg, #1a0a2e 0%, #2d1245 50%, #1a0a2e 100%); */
background: #ffffff;

        /* Lighter, cleaner cream for luxury feel */
    padding: 180px 5%;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: -50px;
}

.catalog-header {
    margin-bottom: 70px;
}

.main-title {
    font-size: 3.5rem;
    /* color: #D4AF37; */
    color: var(--orange);
    /* Deep Maroon/Purple */
    margin-bottom: 10px;
    
}

.sub-title {
    font-size: 1.3rem;
    /* color: rgba(248, 241, 255, 0.65); */
    color: var(--green);
    font-weight: 700;
    font-style: italic;
    opacity: 0.9;
}

/* --- Grid Layout --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for desktop */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-item {
    /* background: rgba(255, 255, 255, 0.4); */
    /* background: var(--premium-purple); */
background: rgba(30, 30, 14, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 3px solid #7AA93C !important;
    border-radius: 15px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Gold shimmer top edge on hover */
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4820A, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-item:hover {
    background: linear-gradient(145deg, #5e2a7a 0%, #3d1b4f 100%);
        /* ✅ slightly lighter purple */
        border-color: #D4820A !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(109, 27, 50, 0.1);
}



.product-item:hover::before {
    opacity: 1;
}


/* --- Typography & Elements --- */
/* .diamond-icon {
    color: #D4AF37;
   
    font-size: 1.8rem;
    margin-bottom: 15px;
} */

.product-card-top h3 {
    font-size: 1.6rem;
    /* color: #f8f1ff; */
    color: var(--orange);
    margin-bottom: 8px;
}

.product-card-top p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
/* color: rgba(248, 241, 255, 0.65); */
color: #ffffff;
    margin-bottom: 20px;
}

.read-more-link {
    text-decoration: underline;
    /* color: #D4AF37; */
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Image Circle Effect --- */
.product-card-image {
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-circle-bg {
    position: absolute;
    width: 200px;
    height: 200px;
background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.product-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 180px;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.product-item:hover .product-card-image img {
    transform: scale(1.1) rotate(2deg);
}

/* --- Responsive Behavior --- */
@media screen and (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .product-item {
        padding: 30px 15px;
    }
}


/* contact us */

.contact-page {
    background: #ffffff;
    padding: 190px 5% 80px;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.contact-hero {
    text-align: center;
    margin-bottom: 80px;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--orange);
}

.premium-subtitle {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

/*3d info card*/

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    /* takes the color of the parent p tag */
    transition: color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--orange);
    /*subtle change on haver*/
    text-decoration: none;
}

.info-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(61, 27, 79, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-align: left;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 14, 0.75) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: 3px solid #7AA93C !important;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--orange);
    margin-bottom: 10px;
    font-family: 'Playfair Display';
}

/*floating query form*/

.query-section {
    background: rgba(30, 30, 14, 0.75) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: 3px solid #7AA93C !important;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(61, 27, 79, 0.3);
    color: white;
}

.form-title {
    font-family: 'Playfair Display';
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--orange);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.978);
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label
{
top: -15px;
font-size: 0.8rem;
color: var(--orange);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--orange);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.submit-btn:hover {
    background: white;
    color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/*animation*/

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .premium-title {
        font-size: 2.5rem;
    }

         .form-title {
             font-size: 1.8rem !important;
             white-space: nowrap;
             letter-spacing: 0px;
             margin-bottom: 30px;
             text-align: center;
         }
}

/* mobile responsive */

@media screen and (max-width: 768px) {
    .form-title {
        font-size: 1.8rem !important;
        white-space: nowrap;
        letter-spacing: 0px;
        margin-bottom: 30px;
        text-align: center;
    }

    .query-section {
        padding: 30px 20px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 400px) {
    .form-title {
        font-size: 1.5rem !important;
    }
}


