/* Custom CSS for background image animation and specific styles */
body {
    font-family: 'Manrope', sans-serif;
    color: #fff; /* Default text color for the main section */
    overflow-x: hidden; /* Prevent horizontal scrollbar due to background animation */
}

/* Hero section with animated background */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Crucial for animation */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%; /* Slightly larger to allow for movement */
    height: 110%; /* Slightly larger to allow for movement */
    background-image: url('assets/images/hero-image.png'); /* Placeholder image */
    background-size: cover;
    background-position: center center;
    animation: backgroundPan 30s infinite alternate ease-in-out; /* Slow pan animation */
    filter: brightness(0.7); 
}

@keyframes backgroundPan {
    0% {
        transform: scale(1) translateX(0) translateY(0);
        background-position: center center;
    }
    50% {
        transform: scale(1.05) translateX(-2%) translateY(2%);
        background-position: 70% 30%;
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
        background-position: center center;
    }
}

.logo-text {
    font-family: 'Playfair Display', serif;
}

.hero-content {
    position: relative;
    z-index: 10; /* Ensure content is above the background */
    max-width: 100%;
    width: calc(100% - 2rem); /* 100% minus 1rem padding on each side */
    padding: 1rem; /* Consistent padding for mobile and desktop */
    box-sizing: border-box; /* Include padding in element's total width/height */
    margin: 0 auto; /* Center the content block horizontally */
}

.hero-heading {
    font-family: 'Playfair Display', serif; /* Decorative font for headings */
    font-size: 5.5rem; /* Adjust as needed */
    line-height: 2;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block; 
    width: 100%;
    text-align: center; 
}

.hero-subheading {
    font-family: 'Playfair Display', serif; /* Decorative font for subheadings */
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    /* --- NEW/CORRECTED PROPERTIES BELOW --- */
    background: linear-gradient(90deg, #D4AF37 30%, #C78A44 70%); /* Apply gradient to background */
    -webkit-background-clip: text; /* Clip background to the shape of the text */
    -webkit-text-fill-color: transparent; /* Make text color transparent to show background */
    background-clip: text; /* Standard property for clipping background */
    color: transparent; /* Standard property for transparent text color */
    /* --- END NEW/CORRECTED PROPERTIES --- */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-family: 'Manrope', serif;
    font-size: 1.25rem; /* text-lg */
    line-height: 1.6;
    margin-bottom: 3rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    color: #f3f4f6; /* Light gray for readability */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* SHOP NOW Button styling */
.shop-button {
    background-color: #C78A44; /* Gold */
    color: #fff; /* Turquoise */
    font-weight: 700; /* font-bold */
    padding: 1rem 2.5rem;
    border-radius: 9999px; /* rounded-full */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Ensure padding works correctly */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-button:hover {
    background-color: #08E5F3; /* Turquoise */
    color: #fff; 
}

/* Navbar link hover */
.navbar-link {
    color: #000000; /* text-gray-200 */
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: #08E5F3; /* Gold on hover */
}

.navbar-links {
    flex-direction: row; 
    align-items: center; 
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    cursor: pointer;
    z-index: 50; /* Ensure it's above other content */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    position: relative; /* For z-index to work against other elements */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333; /* White bars */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
    z-index: 40;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    overflow-y: auto; /* Allow scrolling if menu content is tall */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay .navbar-links {
    flex-direction: column; /* Stack links vertically */
    align-items: center;
    margin-top: 0; /* Reset margin */
    padding: 0;
    width: 100%; /* Ensure links take full width in overlay for centering */
}

.mobile-nav-overlay .navbar-links li {
    margin-bottom: 1.5rem; /* Space between stacked links */
}

.mobile-nav-overlay .navbar-links li:last-child {
    margin-bottom: 0;
}

.mobile-nav-overlay .navbar-link {
    font-size: 1.8rem; /* Larger font for mobile menu */
    padding: 0.5rem 1rem;
    color: #fff;
    display: block; /* Make links block level for full clickable area */
    width: fit-content; /* Adjust width to content for centering */
    margin: 0 auto; /* Center individual links */
}
.mobile-nav-overlay .navbar-link:hover {
     color: #FFD700; /* Gold on hover */
}

/* Hamburger icon transformation when open */
.hamburger-menu.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Navbar container on mobile to align elements correctly */
@media (max-width: 768px) {
    .navbar-container {
        justify-content: space-between;
        align-items: center;
    }
}


/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem; /* Slightly smaller for mobile */
    }
    .hero-subheading {
        font-size: 1.6rem; /* Slightly smaller for mobile */
    }
    .hero-description {
        font-size: 0.95rem; /* Slightly smaller for mobile */
        margin-bottom: 2rem; /* Reduce margin */
    }
    .shop-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Hide regular navbar links on mobile */
    .navbar-links#desktop-nav-links {
        display: none;
    }
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }
}

/* Further adjustments for very small mobile screens */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    .hero-subheading {
        font-size: 1.4rem;
    }
    .hero-description {
        font-size: 0.85rem;
    }
    .shop-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.8rem;
    }
    .hero-content {
        padding: 1rem; /* Reduce overall padding on very small screens */
    }
    .mobile-nav-overlay .navbar-link {
        font-size: 1.5rem; /* Smaller font for very small mobile menu */
    }
}


/* How We Produce Section Specific Styles */
.how-we-produce-section {
    background-color: #f8f8f8; /* Light background */
    color: #333; /* Darker text for readability on light background */
    padding: 4rem 1rem;
    text-align: center;
}

.how-we-produce-heading {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block; /* To center the underline */
}

.how-we-produce-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px; /* Adjust as needed */
    transform: translateX(-50%);
    width: 80px; /* Width of the underline */
    height: 3px;
    background-color: #08E5F3; /* Turquoise underline */
    border-radius: 2px;
}

.how-we-produce-description {
    font-size: 1.125rem;
    max-width: 90%;
    margin: 0.5rem auto 3rem auto;
    line-height: 1.6;
    color: #555;
}

/* Grid layout for the content and 3D model */
.content-grid {
    display: grid;
    /* Three columns for larger screens: left content, gemstone, right content */
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto; /* Two rows for text blocks */
    /* gap: 2.5rem 5rem;  */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    justify-content: center; /* Center the grid itself */
}

/* Specific positioning for feature blocks */
.feature-block-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: end; /* Align to the end of its grid cell (right) */
    text-align: right;
    padding-right: 20px; /* Add some spacing from the center */
}
.feature-block-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: start; /* Align to the start of its grid cell (left) */
    text-align: left;
    padding-left: 20px; /* Add some spacing from the center */
}
.feature-block-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: end;
    text-align: right;
    padding-right: 20px;
}
.feature-block-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    justify-self: start;
    text-align: left;
    padding-left: 20px;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px; /* Limit width of text blocks */
}

/* Reverse direction for right-aligned blocks */
.feature-block-2 .feature-block,
.feature-block-4 .feature-block {
    flex-direction: row-reverse;
}

.feature-icon {
    background-color: #08E5F3; /* Turquoise */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
    box-shadow: 0 4px 10px rgba(0, 173, 181, 0.3); /* Subtle shadow */
    overflow: hidden; /* Ensure image fits circular shape */
    padding: 10px;
}
.feature-icon img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; Apply border-radius to the image itself */
}


.feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600; /* semi-bold */
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature-text p {
    font-size: 0.95rem; /* text-sm */
    color: #666;
    line-height: 1.5;
}

/* Gemstone 3D Container */
.gemstone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    /* Remove fixed min/max width/height so the child controls sizing */
    min-height: 0;
    min-width: 0;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    /* Optional: add padding if you want space around the 3D model */
    /* padding: 1rem; */
}

#gemstone-3d-container {
    width: 100%;
    aspect-ratio: 1 / 1;      /* Always square, scales with width */
    min-width: 300px;
    min-height: 300px;
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    display: block;
  }
  
  #gemstone-3d-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
  }

/* 3D Model Indicator */
.model-indicator {
    position: absolute;
    top: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    transition: opacity 1s ease-out;
    pointer-events: none; /* Allow interaction with canvas beneath */
}
.model-indicator.fade-out {
    opacity: 0;
}
.model-indicator svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for How We Produce section */
@media (max-width: 1024px) { /* Adjust grid for medium screens */
    .content-grid {
        grid-template-columns: 1fr; /* Single column on medium screens */
        grid-template-rows: auto;
        gap: 2.5rem; /* Reduce gap */
    }
    /* Reset positioning for all feature blocks to stack */
    .feature-block-1, .feature-block-2, .feature-block-3, .feature-block-4 {
        grid-column: auto;
        grid-row: auto;
        justify-self: center; /* Center all blocks */
        text-align: center;
    }
    .feature-block {
        flex-direction: row; /* Ensure consistent direction for all blocks */
        max-width: 500px;
        margin: 0 auto;
    }
    .feature-text {
        text-align: left; /* Keep text left aligned within block */
    }
    /* Ensure right-aligned blocks also reset their flex direction */
    .feature-block-2 .feature-block,
    .feature-block-4 .feature-block {
        flex-direction: row;
    }


    .gemstone-wrapper {
        order: -1; /* Move gemstone to the top on mobile */
        margin-bottom: 2rem; /* Add spacing below it */
    }
}

@media (max-width: 768px) {
    .how-we-produce-heading {
        font-size: 2.5rem;
    }
    .how-we-produce-description {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .how-we-produce-heading {
        font-size: 2rem;
    }
    .how-we-produce-description {
        font-size: 0.9rem;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .feature-text h3 {
        font-size: 1.1rem;
    }
    .feature-text p {
        font-size: 0.85rem;
    }
    .gemstone-wrapper {
        min-height: 300px; /* Smaller minimum height */
    }
} 

.products-section {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(to bottom, #E4FEFF 0%, #E4FEFF 50%, #fff 50%, #fff 100%);
}
.products-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.products-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #08E5F3; /* Turquoise underline */
    border-radius: 2px;
}
.products-description {
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0.5rem auto 3rem auto;
    line-height: 1.6;
    color: #555;
}
.product-grid-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 50px; /* Add padding for arrows */
    padding-right: 50px; /* Add padding for arrows */
}
.product-grid {
    display: flex; /* Use flex for horizontal scrolling/carousel */
    gap: 2rem;
    padding: 1rem; /* Padding for cards within the carousel */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap to cards */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
}
.product-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}
.product-card {
    flex: 0 0 auto; /* Don't grow, don't shrink, base on content */
    width: 300px; /* Fixed width for cards */
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    scroll-snap-align: center; /* Snap cards to center */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.product-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height for product images */
    overflow: hidden;
    background-color: #f0f0f0; /* Placeholder background */
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container, cropping if necessary */
}
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #00ADB5; /* Turquoise */
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.product-info {
    padding: 1.5rem;
}
.product-category {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00ADB5; /* Turquoise */
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.product-original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}
.product-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.view-product-btn, .shop-now-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
}
.view-product-btn {
    background-color: #fff;
    color: #00ADB5;
    border: 1px solid #00ADB5;
}
.view-product-btn:hover {
    background-color: #00ADB5;
    color: #fff;
}
.shop-now-btn {
    background-color: #C78A44; /* Gold */
    color: #fff;
}
.shop-now-btn:hover {
    background-color: #A06D39; /* Darker Gold */
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 173, 181, 0.8); /* Turquoise with transparency */
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.carousel-arrow:hover {
    background-color: #00ADB5;
}
.carousel-arrow.left {
    left: 0;
    transform: translateY(-50%) translateX(-50%); /* Push half outside */
}
.carousel-arrow.right {
    right: 0;
    transform: translateY(-50%) translateX(50%); /* Push half outside */
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.75rem;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #C78A44; /* Gold */
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background-color: #fff;
    border-radius: 1rem;
    width: 90%;
    max-width: 900px;
    max-height: 90vh; /* Limit height for scrollability */
    overflow-y: auto; /* Enable scrolling for modal content */
    display: flex; /* Use flex for layout inside modal */
    flex-direction: column; /* Default to column for small screens */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px); /* Initial slight offset for animation */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-overlay.open .modal-content {
    transform: translateY(0);
    opacity: 1;
}
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
    z-index: 10; /* Ensure it's clickable */
}
.modal-close-btn:hover {
    color: #333;
}

.modal-body {
    display: flex;
    flex-direction: column; /* Stack vertically by default */
    padding: 1.5rem;
    gap: 1.5rem;
}

.modal-image-gallery {
    display: flex;
    flex-direction: column; /* Stack thumbnails vertically */
    gap: 0.75rem;
    width: 100%; /* Full width on small screens */
    max-width: 100px; /* Limit thumbnail width on larger screens */
}
.modal-thumbnail {
    width: 100%;
    height: 80px; /* Fixed height for thumbnails */
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.modal-thumbnail.active {
    border-color: #00ADB5; /* Active thumbnail border */
}
.modal-main-image-container {
    position: relative;
    flex-grow: 1; /* Take remaining space */
    height: 300px; /* Fixed height for main image on smaller screens */
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Contain the image within the box */
}
.modal-zoom-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}
.modal-details {
    flex-grow: 1;
}
.modal-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}
.modal-product-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ADB5;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.modal-original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}
.modal-options-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}
.modal-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.modal-option-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.modal-option-btn.active {
    background-color: #00ADB5;
    color: #fff;
    border-color: #00ADB5;
}
.modal-add-to-cart-btn {
    background-color: #C78A44;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    width: 100%;
    transition: background-color 0.3s ease;
}
.modal-add-to-cart-btn:hover {
    background-color: #A06D39;
}
.modal-favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}
.modal-favorite-btn.active {
    color: #FF6347; /* Red for favorited */
}

/* Responsive adjustments for Products Section */
@media (min-width: 768px) {
    .product-grid {
        justify-content: center; /* Center cards on larger screens if fewer than full row */
        overflow-x: hidden; /* Disable scrolling if not needed */
    }
    .carousel-arrow.left {
        left: -20px; /* Adjust position for larger screens */
    }
    .carousel-arrow.right {
        right: -20px; /* Adjust position for larger screens */
    }
}

@media (max-width: 767px) {
    .products-heading {
        font-size: 2.5rem;
    }
    .products-description {
        font-size: 1rem;
    }
    .product-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        overflow-x: visible;
        padding: 0; /* Remove horizontal padding */
        margin: 0;  /* Remove margin if any */
        width: 100%;
        max-width: 100vw;
    }
    .product-card {
        width: 100% !important;
        max-width: 400px;
        min-width: 0;
        box-sizing: border-box;
        margin: 0 auto; /* Center the card */
    }
}

/* Responsive adjustments for Modal */
@media (min-width: 768px) {
    .modal-body {
        flex-direction: row; /* Side-by-side on larger screens */
        gap: 2rem;
    }
    .modal-image-gallery {
        flex-direction: column; /* Keep thumbnails stacked */
        width: auto;
        max-width: 120px; /* More space for thumbnails */
    }
    .modal-main-image-container {
        height: 400px; /* Taller main image */
        flex-shrink: 0; /* Prevent shrinking */
        width: 400px; /* Fixed width for main image */
    }
    .modal-details {
        padding-right: 1rem; /* Add some padding to the right */
    }
}
@media (max-width: 767px) {
    .modal-body {
        padding: 1rem;
    }
    .modal-image-gallery {
        flex-direction: row; /* Arrange thumbnails horizontally on small screens */
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .modal-thumbnail {
        width: 60px; /* Smaller thumbnails on mobile */
        height: 60px;
    }
    .modal-main-image-container {
        height: 250px; /* Smaller main image on mobile */
    }
    .modal-product-title {
        font-size: 1.7rem;
    }
    .modal-price {
        font-size: 1.5rem;
    }
    .modal-add-to-cart-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Zoom functionality for product modal */
.modal-main-image.zoomed {
    cursor: grab;
    transform: scale(2); /* Initial zoom level */
    transform-origin: center center; /* Default origin */
    transition: transform 0.2s ease-in-out;
}

.modal-main-image.zoomed.dragging {
    cursor: grabbing;
}

/* Carousel Section */
.carousel-section {
    padding: 2rem 1rem;
    background-image: url(assets/images/carousel-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden; /* Crucial to clip slides */
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 1.5rem; /* Rounded corners for the white content box */
    overflow: hidden; /* Hide content overflow inside the white box */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Subtle shadow for the box */
    background-color: #fff; /* White background for the content area */
    padding: 1.5rem; /* Reduced inner padding for content */
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth sliding transition */
    width: 100%; /* Each slide takes full width of container */
}

.carousel-slide {
    flex: 0 0 100%; /* Each slide takes full width and doesn't shrink/grow */
    padding: 1.5rem; /* Add padding to the slide content */
    box-sizing: border-box;
    text-align: left; /* Align text within slides */
    display: flex; /* Use flex for internal layout of slides */
    flex-direction: column; /* Stack content vertically by default */
    align-items: center; /* Center content horizontally in column mode */
}

.slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem; /* Increased margin */
    position: relative;
    display: block; /* Changed from inline-block to block */
    text-align: center; /* Ensure heading is centered */
    width: 100%;
}

.slide-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #C78A44; /* Gold underline */
    border-radius: 2px;
}

/* Slide 1: Family Legacy */
.slide-family-legacy .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Limit content width */
    margin-top: 0; /* Remove top margin */
}
.slide-family-legacy .image-col {
    position: relative;
    width: 100%;
    max-width: 400px; /* Max width for image */
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    height: 300px; /* Consistent height for image container */
}
.slide-family-legacy .image-col img {
    width: 100%;
    height: 100%; /* Make image fill the container's height */
    display: block;
    object-fit: cover; /* Cover the container, eliminating whitespace */
}
.slide-family-legacy .experience-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #08E5F3; /* Turquoise */
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slide-family-legacy .text-col {
    text-align: left;
}
.slide-family-legacy .text-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}
.slide-family-legacy .text-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.slide-family-legacy .text-col li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.slide-family-legacy .text-col li::before {
    content: '•';
    color: #C78A44; /* Gold bullet */
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.slide-family-legacy .text-col strong {
    color: #C78A44; /* Turquoise for emphasis */
    font-weight: 600;
}

/* Slide 2: Allure of Egyptian Turquoise */
.slide-allure .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0; /* Remove top margin */
}
.slide-allure .text-col {
    text-align: left;
    margin-left: 10%;
}
.slide-allure .text-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}
.slide-allure .text-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.slide-allure .text-col li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.slide-allure .text-col li::before {
    content: '•';
    color: #C78A44; /* Gold bullet */
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.slide-allure .text-col strong {
    color: #C78A44; /* Turquoise for emphasis */
    font-weight: 600;
}
.slide-allure .image-col {
    width: 100%;
    max-width: 400px; /* Consistent max width with other slides */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Ensure image background is white */
    border-radius: 0.75rem;
    overflow: hidden;
    height: 300px; /* Consistent height for image container */
}
.slide-allure .image-col img {
    /* width: 100%; */
    height: 100%; /* Make image fill the container's height */
    display: block;
    object-fit: cover; /* Cover the container, eliminating whitespace */
}

/* Slide 3: Loved by our Customers */
.slide-customers .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin-top: 1.5rem;
}
.slide-customers .reviews-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
    width: 100%;
}
.review-card {
    background-color: #f9f9f9;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
}
.review-card .stars {
    color: #FFD700; /* Gold stars */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.review-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.review-card .quote-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-family: serif; /* To ensure the quote character looks good */
    color: #ccc;
    line-height: 1;
}
.review-card .quote-icon.turquoise {
    color: #00ADB5;
}
.review-card .quote-icon.gold {
    color: #C78A44;
}
.review-card .review-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-top: 0.75rem;
    border: 1px solid #eee;
}
.slide-customers .shop-button-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}
.slide-customers .shop-button {
    /* Inherit styling from main shop-button, but ensure it's centered */
    margin: 0 auto;
}


/* Carousel Navigation Arrows */
.carousel-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8); /* White with transparency */
    color: #00ADB5; /* Turquoise arrow */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 20; /* Above the carousel content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.carousel-nav-arrow:hover {
    background-color: #fff;
    color: #C78A44; /* Gold on hover */
}
.carousel-nav-arrow.left {
    left: 1rem;
}
.carousel-nav-arrow.right {
    right: 1rem;
}

/* Pagination Dots */
.carousel-pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.75rem;
    z-index: 20; /* Above carousel content */
    position: relative; /* To ensure z-index works */
}
.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.carousel-dot.active {
    background-color: #C78A44; /* Gold when active */
    transform: scale(1.2);
    border-color: #C78A44;
}
.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .carousel-slide {
        /* Ensure slides stack heading above content */
        flex-direction: column; /* Keep as column to stack heading above content-wrapper */
        align-items: center; /* Center content horizontally */
        justify-content: flex-start; /* Align content to the top */
    }
    .slide-family-legacy .content-wrapper,
    .slide-allure .content-wrapper {
        flex-direction: row; /* Side-by-side for text and image/features */
        align-items: center;
        justify-content: center;
        margin-top: 0; /* Remove top margin to reduce whitespace */
    }
    .slide-family-legacy .text-col,
    .slide-allure .text-col {
        flex: 1;
        max-width: 50%; /* Take up half the space */
        text-align: left; /* Ensure text is left-aligned */
    }
    .slide-family-legacy .image-col,
    .slide-allure .image-col {
        flex: 1; /* Allow image to take flexible space */
        max-width: 50%; /* Max width for image to not exceed half */
        margin-right: 2rem; /* Space between image and text */
        margin-left: 0; /* Ensure no conflicting margin */
    }
    .slide-allure .image-col {
        order: 2; /* Move image to the right */
        margin-left: 2rem; /* Space on the left for the image */
        margin-right: 0; /* Remove right margin */
    }
    .slide-customers .reviews-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    }
    .carousel-nav-arrow.left {
        left: 2rem; /* Move arrows further from edge */
    }
    .carousel-nav-arrow.right {
        right: 2rem; /* Move arrows further from edge */
    }
}

@media (max-width: 767px) {
    .carousel-slide {
        padding: 1.5rem;
    }
    .slide-heading {
        font-size: 2rem;
    }
    .slide-family-legacy .text-col h3,
    .slide-allure .text-col h3 {
        font-size: 1.5rem;
    }
    .slide-family-legacy .text-col li,
    .slide-allure .text-col li {
        font-size: 1rem;
    }
    .slide-family-legacy .experience-badge {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    .review-card p {
        font-size: 0.9rem;
    }
    .review-card .quote-icon {
        font-size: 2rem;
    }
    .carousel-nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Why Us Section */
.features-section {
    padding: 4rem 1rem;
    background-color: #E4FEFF; /* Light blue background */
    color: #333;
}

.why-us-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    margin: 0 auto; /* Adjusted margin */
    padding-bottom: 0;
    border-bottom: none;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    max-width: 100%;
}
.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.feature-icon-wrapper {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none; /* Removed shadow */
    background-color: transparent; /* Ensure no background color */
}

.feature-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #fff; /* White icon */
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #242424;
    margin-top: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #898989;
    line-height: 1.5;
}

/* Contact Section */
.contact-us-section {
    padding: 4rem 1rem;
    background-color: #fff; /* White background for the contact form */
    color: #333;
}

.contact-section {
    max-width: 1000px;
    margin: 0 auto; /* Adjusted margin */
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 3rem;
    align-items: center;
    padding: 0 1rem;
}

.contact-image-container {
    flex-shrink: 0; /* Prevent image from shrinking */
    width: 100%;
    max-width: 450px; /* Max width for image */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-form-wrapper {
    flex-grow: 1; /* Allow form to take remaining space */
    width: 100%;
    max-width: 500px; /* Max width for form */
    text-align: left;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #00ADB5; /* Turquoise focus border */
    box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.2);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical; /* Allow vertical resizing */
}

.contact-submit-btn {
    background-color: #08E5F3; /* Bright Turquoise for button */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px; /* Fully rounded */
    font-weight: 700;
    font-size: 1rem;
    width: 100%; /* Full width */
    display: block;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(8, 229, 243, 0.3);
}

.contact-submit-btn:hover {
    background-color: #00ADB5; /* Darker turquoise on hover */
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .why-us-features {
        gap: 1rem; /* More space between features on desktop */
    }
    .feature-item {
        max-width: 100%; /* Adjust max width for 4 columns */
    }
    .contact-section {
        flex-direction: row; /* Side-by-side on desktop */
        gap: 4rem;
        align-items: center; /* Center items vertically */
    }
    .contact-form-wrapper {
        margin-top: 2rem; /* Align form text with image top */
    }
}

@media (max-width: 767px) {
    .why-us-features {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .feature-item {
        max-width: 45%; /* Two columns on smaller screens */
    }
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .feature-icon-wrapper svg {
        width: 35px;
        height: 35px;
    }
    .feature-item h3 {
        font-size: 1.1rem;
    }
    .feature-item p {
        font-size: 0.875rem;
    }

    .contact-section {
        margin-top: 2rem;
        gap: 2rem;
    }
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    .contact-form-wrapper p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .contact-submit-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, #E4FEFF 0%, #FFFFFF 100%); /* Light blue to white gradient */
    padding: 4rem 1rem 2rem 1rem; /* Top, right, bottom, left padding */
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three equally-sized columns */
    gap: 2rem;
    align-items: flex-start; /* Align items to the top of their grid cells */
}

.footer-col {
    padding: 1rem;
}

/* Column 1: Logo and Address */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align logo and text to the left */
    gap: 0.75rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.footer-logo img {
    width: 100%; /* Larger logo size */
    height: auto;
    object-fit: contain;
}
.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}
.footer-address {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-address svg {
    width: 18px;
    height: 18px;
    color: #00ADB5; /* Turquoise location icon */
    flex-shrink: 0;
    margin-top: 2px; /* Adjust for vertical alignment */
}

/* Column 2: Links */
.footer-links h3, .footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 0.75rem;
}
.footer-links ul li a {
    color: #555;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links ul li a:hover {
    color: #00ADB5; /* Turquoise on hover */
}

/* Column 3: Contact Us */
.footer-contact p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 1rem;
}
.contact-info-item svg {
    width: 20px;
    height: 20px;
    color: #00ADB5; /* Turquoise icons */
    flex-shrink: 0;
}
.contact-info-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-item a:hover {
    color: #00ADB5;
}

/* Social Media Icons */
.footer-social-icons {
    grid-column: 1 / -1; /* Span across all columns */
    display: flex;
    justify-content: flex-end; /* Align to the right */
    gap: 1rem;
}
.social-icon-wrapper {
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.social-icon-wrapper:hover {
    background-color: #00ADB5; /* Turquoise on hover */
    transform: translateY(-3px);
}
.social-icon-wrapper svg {
    width: 20px;
    height: 20px;
    color: #00ADB5; /* Turquoise icon color */
    transition: color 0.2s ease;
}
.social-icon-wrapper:hover svg {
    color: #fff; /* White icon on hover */
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #cce7ed; /* Light line above copyright */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center; /* Center content in stacked columns */
    }
    .footer-logo img {
        width: 120px; /* Slightly smaller on mobile but still larger than original */
    }
    .footer-logo-col {
        align-items: center; /* Center logo and address */
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem; /* Horizontal gap for links */
    }
    .footer-links ul li {
        margin-bottom: 0; /* Remove vertical margin for inline links */
    }
    .footer-social-icons {
        justify-content: center; /* Center social icons on mobile */
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
  .content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .feature-block,
  .feature-block-1,
  .feature-block-2,
  .feature-block-3,
  .feature-block-4 {
    text-align: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .gemstone-wrapper {
    order: 0;
    width: 100%;
    max-width: 350px;
    min-width: 200px;
    margin: 0 auto 2rem auto;
  }
}
@media (max-width: 600px) {
  .content-grid {
    gap: 1.2rem;
  }
  .feature-block {
    flex-direction: column !important;
    gap: 0.7rem;
  }
  .gemstone-wrapper {
    max-width: 95vw;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .carousel-arrow {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .product-card {
    max-width: 100vw;
    width: 100% !important;
  }
  .pagination-dots {
    gap: 0.4rem;
  }
}