/**
 * Collection Page Styles
 * Extracted from collection.blade.php for better maintainability
 * Includes: Hero section, product grids, video loading, responsive design
 */

/* ========================================
   CSS ROOT VARIABLES & GLOBALS
   ======================================== */

/* Use black color instead of collection color */
:root {
    --collection-color: #212529;
    --collection-color-rgb: 33, 37, 41;
    --hydrate-accent: #212529;
}

/* Remove all gradients and use black color */
[style*="gradient"],
[style*="purple"],
[style*="667eea"],
[style*="764ba2"],
[style*="41b6e6"] {
    background-image: none !important;
    background: #212529 !important;
}

/* Override any gradient backgrounds */
.bg-gradient,
[class*="gradient"] {
    background-image: none !important;
    background: #212529 !important;
}

/* Collection hero and sections with black color */
.collection-hero,
.hero-section,
.collection-banner {
    background: #212529 !important;
    background-image: none !important;
}

/* Buttons with black color */
.collection-button,
.btn-primary,
.view-more-btn {
    background: #212529 !important;
    background-image: none !important;
    color: white !important;
    border: none !important;
}

.collection-button:hover,
.btn-primary:hover,
.view-more-btn:hover {
    background: #000000 !important;
    transform: translateY(-2px);
}

/* Styles for video placeholder */
.no-video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure images have fallback background */
.video-background-wrapper {
    background-color: #f8f9fa;
}

.coming-soon-message {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.coming-soon-message h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   PRODUCT GRID LAYOUTS
   ======================================== */

/* Modern Product Card Styles - Same as Welcome Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Clean Product Card Container */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #eee;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Product Image */
.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge.sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    border-radius: 0;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 12px;
    z-index: 10;
}

.product-badge.new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #212529;
    color: white;
    border-radius: 0;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 12px;
    z-index: 10;
}

/* Content Area */
.product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
}

.price-current:not(.has-sale) {
    color: #2c3e50;
}

/* Best Sellers Grid */
.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 991px) {
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 767px) {
    /* Ensure both grids have same layout */
    .products-grid,
    .best-sellers-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin: 20px 0 !important;
        width: 100% !important;
    }

    /* Container adjustments */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Product Card Ultimate responsive styles */
    .product-card-ultimate {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        background: white !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    }

    /* Image container */
    .product-card-ultimate .card-image-container {
        height: 180px !important;
        position: relative !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .product-card-ultimate .card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Card content */
    .product-card-ultimate .card-content {
        padding: 12px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    /* Category */
    .product-card-ultimate .card-category {
        font-size: 10px !important;
        color: #666 !important;
        text-transform: uppercase !important;
        margin-bottom: 4px !important;
        text-decoration: none !important;
    }

    /* Title fixes */
    .product-card-ultimate .card-title {
        margin: 0 !important;
        margin-bottom: 8px !important;
        padding-top: 15px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        height: auto !important;
        min-height: 32px !important;
        max-height: 40px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .product-card-ultimate .card-title a {
        color: #333 !important;
        text-decoration: none !important;
        display: block !important;
    }

    .product-card-ultimate .card-title a span {
        display: block !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Hide elements that take too much space on mobile */
    .product-card-ultimate .card-rating,
    .product-card-ultimate .card-description,
    .product-card-ultimate .quick-actions {
        display: none !important;
    }

    /* Price section */
    .product-card-ultimate .card-price-section {
        margin: 8px 0 !important;
        flex-shrink: 0 !important;
    }

    .product-card-ultimate .price-current {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #000 !important;
    }

    .product-card-ultimate .price-original {
        font-size: 13px !important;
        color: #999 !important;
        text-decoration: line-through !important;
        margin-left: 5px !important;
    }

    /* Add to cart button */
    .product-card-ultimate .card-action {
        margin-top: auto !important;
        padding-top: 8px !important;
    }

    .product-card-ultimate .add-to-cart-btn {
        width: 100% !important;
        padding: 8px 12px !important;
        background: #000 !important;
        color: white !important;
        border: none !important;
        border-radius: 4px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .product-card-ultimate .add-to-cart-btn:hover {
        background: #333 !important;
    }

    /* Badges */
    .product-card-ultimate .card-badges {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        right: 8px !important;
        display: flex !important;
        justify-content: space-between !important;
        z-index: 2 !important;
    }

    .product-card-ultimate .badge {
        font-size: 9px !important;
        padding: 4px 8px !important;
        border-radius: 3px !important;
        font-weight: 600 !important;
    }

    .product-card-ultimate .badge-sale {
        background: #ff4757 !important;
        color: white !important;
    }

    .product-card-ultimate .badge-new {
        background: #2ed573 !important;
        color: white !important;
    }

    .product-card-ultimate .badge-featured {
        background: #ffa502 !important;
        color: white !important;
    }

    /* Section spacing */
    .best-sellers-section,
    .all-products-section {
        padding: 30px 0 !important;
    }

    .section-header {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    .section-label {
        font-size: 11px !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .products-grid,
    .best-sellers-grid {
        gap: 8px !important;
    }

    .product-card-ultimate .card-image-container {
        height: 160px !important;
    }

    .product-card-ultimate .card-content {
        padding: 10px !important;
    }

    .product-card-ultimate .card-title {
        font-size: 12px !important;
        min-height: 28px !important;
    }

    .product-card-ultimate .price-current {
        font-size: 14px !important;
    }
}

/* View Other Collections Section Mobile Fixes */
@media (max-width: 767px) {
    .other-collection-link {
        font-size: 10px !important;
    }
}

/* ========================================
   ANIMATIONS & LOADING STYLES
   ======================================== */

/* Toast and Animation Styles */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: scale(1);
    }
    40%, 43% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1.05);
    }
    90% {
        transform: scale(1.02);
    }
}

/* Video Loader Styles */
.video-loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.video-loader-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.ring-loader {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-loader::before,
.ring-loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-loader::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    animation: ring-spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.ring-loader::after {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-bottom-color: rgba(255, 255, 255, 0.7);
    border-left-color: rgba(255, 255, 255, 0.7);
    animation: ring-spin-reverse 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.ring-loader .center-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ring-spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.loading-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fade-in-out 2s ease-in-out infinite;
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.9; }
}

/* Hide video until loaded */
.video-background-wrapper video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-background-wrapper video.loaded {
    opacity: 1;
}

/* Hide image when video is present */
.video-background-wrapper.has-video img.bg-video {
    display: none;
}

/* ========================================
   HERO & BANNER SECTIONS
   ======================================== */

/* Override collection-modern.css constraints */
.full-width-visual-section {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Banner wrapper - full viewport width with 80vh max height */
.video-background-wrapper {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    height: 80vh !important;
    max-height: 80vh !important;
    background-color: #000000;
    overflow: hidden;
}

/* Set parent sections to 80vh height */
.collection-hero-section,
.immersive-showcase-section {
    height: 80vh !important;
    max-height: 80vh !important;
    overflow: hidden !important;
}

/* Images and videos fill the section */
.video-background-wrapper img.bg-video,
.video-background-wrapper video.bg-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Fill the section, may crop top/bottom */
    object-position: center center !important;
    z-index: 1;
}

/* Overlay covers the actual media size */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Content overlay on top of media - centered */
.collection-hero-content-wrapper,
.immersive-showcase-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

/* Center the container that holds the content */
.video-background-wrapper .container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3;
}

/* Clean Shop Button */
.product-button {
    display: block;
    width: 100%;
    padding: 12px 30px;
    background: #212529;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.product-button:hover {
    background: #000000;
    color: white;
    text-decoration: none;
}

/* Override existing product card styles */
.product-card-ultimate {
    all: unset;
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* ========================================
   SECTION HEADERS & LABELS
   ======================================== */

/* Fix section headers and elements */
.section-label {
    color: #212529 !important;
}

.section-underline span {
    background: #212529 !important;
}

/* Fix section underline alignment ONLY for science-backed section */
.science-backed-section .section-underline {
    justify-content: flex-start !important;
}

/* RTL: Right align for Arabic in science-backed section */
[dir="rtl"] .science-backed-section .section-underline {
    justify-content: flex-end !important;
}

/* Remove border radius from science-backed section images */
.science-backed-image img,
.image-parallax-container img {
    border-radius: 0 !important;
}

/* Fix buttons and links */
.animated-btn,
.science-backed-discover-link {
    color: #212529 !important;
    border-color: #212529 !important;
}

.animated-btn:hover,
.science-backed-discover-link:hover {
    background: #212529 !important;
    color: white !important;
}

/* Remove all bubble gradients - hide them completely */
.bubble,
.floating-bubble,
[class*="bubble"] {
    display: none !important;
}

/* Hero sections with black background and white text */
.collection-hero,
.hero-section {
    background: #212529 !important;
    color: white !important;
}

.collection-hero *,
.hero-section * {
    color: white !important;
}

/* Section headers with black background */
.section-header {
    color: #333 !important;
}

.section-label {
    background: #212529 !important;
    color: white !important;
    padding: 5px 15px;
    border-radius: 0;
    display: inline-block;
}

/* Ensure all icon backgrounds use black color */
.empty-state-icon,
.icon-wrapper,
[class*="icon-bg"] {
    background: rgba(33, 37, 41, 0.1) !important;
    background-image: none !important;
}

/* Ensure all SVG icons use black color */
.empty-state-svg,
svg.icon,
[class*="icon"] svg {
    fill: #212529 !important;
}

/* ========================================
   BUTTONS & INTERACTIONS
   ======================================== */

/* Buttons - black background with white text */
.animated-btn,
.science-backed-discover-link {
    background: #212529 !important;
    color: white !important;
    border: none !important;
}

.animated-btn:hover,
.science-backed-discover-link:hover {
    background: #000000 !important;
    color: white !important;
}

/* Remove ALL animations */
* {
    animation: none !important;
    transition: none !important;
}

/* Product cards - no shadow, no animations */
.product-card,
.product-card-ultimate {
    box-shadow: none !important;
    border: 1px solid #eee !important;
}

.product-card:hover,
.product-card-ultimate:hover {
    transform: none !important;
    box-shadow: none !important;
}

.product-card::before,
.product-card-ultimate::before {
    display: none !important;
}

/* Remove image hover scale */
.product-card:hover .product-image img,
.product-card-ultimate:hover .product-image img {
    transform: none !important;
}

/* Remove button animations */
.product-button::before {
    display: none !important;
}

.product-button:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Remove badge pulse */
.product-badge.sale {
    animation: none !important;
}

/* Empty state icons - use black color */
.empty-state-icon {
    background: rgba(33, 37, 41, 0.1) !important;
}

.empty-state-svg {
    fill: #212529 !important;
}

.empty-state-action {
    background: #212529 !important;
    border-color: #212529 !important;
}

.empty-state-action:hover {
    background: #000000 !important;
    border-color: #000000 !important;
}

/* ========================================
   PAGE WRAPPER & FULL WIDTH SECTIONS
   ======================================== */

/* Collection page wrapper - full width */
.collection-page-wrapper {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Video sections - full width */
.video-section,
.immersive-showcase-section,
.full-width-visual-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
}

.video-section .container,
.immersive-showcase-section .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove video overlays */
.video-overlay,
.hero-overlay,
.video-controls-overlay,
[class*="overlay"] {
    display: none !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .coming-soon-message {
        padding: 30px 40px;
    }

    .coming-soon-message h3 {
        font-size: 1.8rem;
    }

    /* Mobile Banner */
    .banner-title {
        font-size: 32px;
    }

    .banner-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .collection-hero-content-wrapper,
    .immersive-showcase-content-wrapper {
        padding: 0 20px !important;
    }

    .collection-hero-title,
    .immersive-showcase-title {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========================================
   BEST SELLERS SECTION
   ======================================== */

/* Best Sellers Grid Layout */
.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.best-sellers-section {
    padding: 60px 0;
    background: transparent;
}

/* Ensure product cards have proper styling */
.best-sellers-grid .product-card-ultimate {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* Responsive for best sellers grid */
@media (max-width: 991px) {
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .best-sellers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Remove all border radius from collection page elements */
.collection-page-wrapper * {
    border-radius: 0 !important;
}

/* Specifically target all elements */
.collection-page-wrapper .product-card,
.collection-page-wrapper .product-card-ultimate,
.collection-page-wrapper .product-image,
.collection-page-wrapper .product-badge,
.collection-page-wrapper .product-button,
.collection-page-wrapper .coming-soon-message,
.collection-page-wrapper .section-label,
.collection-page-wrapper .animated-btn,
.collection-page-wrapper .science-backed-discover-link,
.collection-page-wrapper .empty-state-icon,
.collection-page-wrapper .empty-state-action,
.collection-page-wrapper .btn,
.collection-page-wrapper button,
.collection-page-wrapper input,
.collection-page-wrapper textarea,
.collection-page-wrapper select,
.collection-page-wrapper .form-control,
.collection-page-wrapper .card,
.collection-page-wrapper div,
.collection-page-wrapper img,
.collection-hero-section,
.best-sellers-section,
.science-backed-section,
.all-products-section,
.immersive-showcase-section {
    border-radius: 0 !important;
}

/* Add to cart button - black color */
.add-to-cart-btn,
.product-card .add-to-cart-btn,
.product-card-ultimate .add-to-cart-btn {
    background: #212529 !important;
    color: white !important;
    border: none !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.add-to-cart-btn:hover,
.product-card .add-to-cart-btn:hover,
.product-card-ultimate .add-to-cart-btn:hover {
    background: #000000 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.add-to-cart-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Ensure all forms containing add to cart buttons have proper styling */
form[action*="cart/add"],
.add-to-cart-form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Product card forms and buttons */
.product-card form,
.product-card-ultimate form,
.card-action form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-card .add-to-cart,
.product-card-ultimate .add-to-cart-btn,
.card-action .add-to-cart-btn,
form button.add-to-cart,
form button.add-to-cart-btn {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Remove section underlines */
.section-underline {
    display: none !important;
}

/* Hide science backed section */
.science-backed-section {
    display: none !important;
}

/* ========================================
   COLLECTION HERO & BANNER
   ======================================== */

/* Simple Banner with Image/Video */
.collection-hero-section,
.immersive-showcase-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.banner-media {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.banner-button {
    background: #212529;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-button:hover {
    background: #000;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Section titles with Urbanist font */
.section-title {
    font-family: 'Urbanist', sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 35px !important;
    line-height: 45px !important;
    letter-spacing: -0.04em !important;
    color: #3C3C3C !important;
    text-align: left !important;
}

[dir="rtl"] .section-title {
    text-align: right !important;
}

/* Hide section labels */
.section-label {
    display: none !important;
}

/* Hide product card descriptions */
.card-description {
    display: none !important;
}

/* ========================================
   OTHER COLLECTIONS SECTION
   ======================================== */

/* View Other Collections section styles */
.other-collections-section {
    padding: 60px 0 2rem;
    background: #f8f9fa;
}

.other-collections-slider {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
}

.collection-slide {
    display: flex;
    gap: 15px;
}

.other-collection-card {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.other-collection-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.other-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-collection-content {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.other-collection-title {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.other-collection-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.other-collection-link {
    display: inline-block;
    padding: 12px 30px;
    background: #212529;
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.other-collection-link:hover {
    background: #000000;
    color: white;
    text-decoration: none;
}

/* Swiper navigation - hide arrows and pagination */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    display: none !important;
}

/* ========================================
   DESCRIPTION SECTION
   ======================================== */

/* Description Section Styles */
.description-section {
    padding: 60px 0 40px 0;
    background: #ffffff;
}

.description-box {
    background: #f8f9fa;
    padding: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.description-title {
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: #212529;
    margin-bottom: 25px;
    text-align: left;
}

[dir="rtl"] .description-title {
    text-align: right;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    text-align: left;
}

[dir="rtl"] .description-content {
    text-align: right;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for description section */
@media (max-width: 991px) {
    .description-section {
        padding: 40px 0 30px 0;
    }

    .description-box {
        padding: 30px;
    }

    .description-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .description-section {
        padding: 30px 0 20px 0;
    }

    .description-box {
        padding: 25px 20px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        margin: 0 -15px;
        box-shadow: none;
    }

    .description-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .description-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .description-box {
        padding: 20px 15px;
        margin: 0 -10px;
    }

    .description-title {
        font-size: 20px;
        line-height: 26px;
    }

    .description-content {
        font-size: 14px;
    }
}
