/* Hero Section Styles */
.hero-section {
    position: relative;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.85) 0%, rgba(135, 206, 235, 0.85) 100%),
                url('../India_Handicraft_Exporters-A_6.webp') center/cover no-repeat fixed;
    overflow: hidden;
    min-height: 80vh;
}

.hero-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.05) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(13, 202, 240, 0.08) 0%, rgba(13, 202, 240, 0.03) 100%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #212529;
}

.hero-title .text-gradient {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-gradient {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
    border: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
    color: white;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

.hover-glow:hover {
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.img-hover-zoom {
    overflow: hidden;
    border-radius: 1rem;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 30px 0 60px 0;
        background: linear-gradient(135deg, rgba(176, 224, 230, 0.9) 0%, rgba(135, 206, 235, 0.9) 100%),
                    url('../India_Handicraft_Exporters-A_6.webp') center/cover no-repeat fixed;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 1200px) {
    .hero-image {
        right: -15%;
        width: 55%;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        position: relative;
        right: 0;
        width: 80%;
        margin: 3rem auto 0;
        transform: none;
    }

    .hero-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0 40px 0;
        background: linear-gradient(135deg, rgba(176, 224, 230, 0.95) 0%, rgba(135, 206, 235, 0.95) 100%),
                    url('../India_Handicraft_Exporters-A_6.webp') center/cover no-repeat fixed;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        width: 100%;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }
}

/* Products Page Styles */
.category-nav {
    border-bottom: 1px solid #e9ecef;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-nav-item {
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-nav-item:hover,
.category-nav-item.active {
    color: var(--primary-color);
    background: rgba(13, 202, 240, 0.1);
}

.category-section {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
}

.category-icon {
    transition: all 0.3s ease;
    background: white;
}

.category-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.2);
    border-color: var(--primary-color);
}

.category-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.category-icon:hover + .category-label {
    color: var(--primary-color);
}

.filter-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.filter-sidebar h3 {
    color: #212529;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-sidebar h4 {
    color: #495057;
    font-weight: 600;
}

.form-check-label {
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check-input:checked + .form-check-label {
    color: var(--primary-color);
}

.range-slider {
    padding: 0.5rem 0;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
}

.products-grid {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    padding: 2rem 0;
}

.products-grid .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
    transition: color 0.3s ease;
}

.product-card:hover .card-title {
    color: var(--primary-color);
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card:hover .card-title a {
    color: var(--primary-color);
}

.product-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card .price del {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-right: 0.5rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-badge.sale {
    background: var(--secondary-color);
}

.product-badge.best-seller {
    background: #ffc107;
    color: #212529;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(0);
}

.product-card .btn-outline-info {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.product-card .btn-outline-info:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.sort-filter-section {
    background: transparent;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: none;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-options .form-select {
    border-color: #e9ecef;
    padding: 0.25rem 1.5rem 0.25rem 0.75rem;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    width: auto;
    min-width: 140px;
    max-width: 200px;
    display: inline-block;
}

.sort-options .form-select:hover,
.sort-options .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.15);
}

.view-options .btn-group {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.view-options .btn {
    padding: 0.5rem 1rem;
    border-color: #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
}

.view-options .btn:hover,
.view-options .btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-toggle .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.pagination {
    margin-top: 3rem;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: rgba(13, 202, 240, 0.1);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .sort-filter-section {
        padding: 0.75rem;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .category-nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .sort-options {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-options .form-select {
        width: 100%;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .category-nav {
        padding: 0.5rem 0;
    }

    .category-nav-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }

    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-card .card-title {
        font-size: 1rem;
    }
    
    .product-card .price {
        font-size: 1.1rem;
    }
}

/* Featured Products Section */
.featured-products {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    padding: 5rem 0;
    text-align: center;
}

.featured-products .row {
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products .col-md-6.col-lg-3 {
    display: flex;
    justify-content: center;
}

.featured-products .product-card {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.95) 0%, rgba(220, 235, 255, 0.95) 100%);
    padding: 5rem 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    padding: 5rem 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4b6e 0%, #0d2b4e 100%);
    color: #fff;
}

/* Quick View Modal */
.modal-content {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(230, 240, 255, 0.98) 100%);
}

@media (max-width: 991.98px) {
    .featured-products,
    .about-section,
    .contact-section {
        padding: 4rem 0;
    }

    .featured-products .row {
        max-width: 100%;
    }
    
    .featured-products .product-card {
        max-width: 320px;
    }
}

@media (max-width: 767.98px) {
    .featured-products,
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }

    .featured-products .product-card {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .featured-products,
    .about-section,
    .contact-section {
        padding: 2rem 0;
    }
}

/* Category Showcase Section */
.category-showcase {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    padding: 2rem 0;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 172, 179, 0.05) 0%, rgba(1, 172, 179, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(1, 172, 179, 0.1) 0%, rgba(1, 172, 179, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(1, 172, 179, 0.2) 0%, rgba(1, 172, 179, 0.3) 100%);
}

.category-card h3 {
    color: #212529;
    transition: color 0.3s ease;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.category-card:hover h3 {
    color: var(--primary-color);
}

.category-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #6c757d;
}

.category-card .btn {
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
}

.category-card:hover .btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .category-card,
    .category-icon-wrapper,
    .category-card h3,
    .category-card p,
    .category-card .btn {
        animation: none !important;
        transition: none !important;
    }
    
    .category-card:hover .category-icon-wrapper i {
        animation: none !important;
    }
    
    .category-card:hover .category-icon-wrapper::before {
        animation: none !important;
    }
}

/* Enhanced Story Page Layout */
.story-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
    box-shadow: 0 2px 24px 0 rgba(30, 60, 90, 0.04);
}

.story-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #f8fafc 0%, transparent 100%);
    z-index: 1;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem 1rem 1rem 1rem;
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(30, 60, 90, 0.04);
}

.story-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #1a4b6e 20%, #00a8b5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.story-hero-content h1::after {
    content: '';
    display: block;
    margin-top: 0.5rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00a8b5, transparent);
    border-radius: 2px;
}

.story-hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c6b8f;
    opacity: 0.92;
}

.story-hero-image {
    position: relative;
    z-index: 2;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 60, 90, 0.10);
    background: #fff;
    margin: 1.5rem 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.story-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-hero-image:hover {
    box-shadow: 0 16px 48px rgba(30, 60, 90, 0.16);
    transform: scale(1.025);
}

/* Enhanced Story Sections */
.story-section {
    position: relative;
    padding: 8rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(176, 224, 230, 0.1);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(176, 224, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 224, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.story-text-content {
    padding: 2rem;
    position: relative;
}

.story-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00a8b5, transparent);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1a4b6e, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00a8b5, transparent);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2c6b8f;
}

/* Enhanced Mission Values */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(176, 224, 230, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(176, 224, 230, 0.2);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(176, 224, 230, 0.25);
    border-color: #00a8b5;
}

.value-item i {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(176, 224, 230, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    color: #00a8b5;
}

.value-item:hover i {
    background: rgba(0, 168, 181, 0.2);
    transform: scale(1.1);
}

.value-item span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a4b6e;
}

/* Enhanced Vision Goals */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(176, 224, 230, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(176, 224, 230, 0.2);
}

.goal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(176, 224, 230, 0.25);
    border-color: #00a8b5;
}

.goal-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 224, 230, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    color: #00a8b5;
}

.goal-item:hover .goal-icon {
    background: rgba(0, 168, 181, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.goal-icon i {
    font-size: 1.8rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a4b6e;
}

.goal-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c6b8f;
    margin: 0;
}

/* Enhanced Impact Section */
.story-impact {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
}

.impact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(176, 224, 230, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(176, 224, 230, 0.2);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(176, 224, 230, 0.25);
    border-color: #00a8b5;
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 224, 230, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    color: #00a8b5;
}

.impact-card:hover .impact-icon {
    background: rgba(0, 168, 181, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 168, 181, 0.3);
}

.impact-icon i {
    font-size: 2.5rem;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1a4b6e, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c6b8f;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
    .story-hero-content h1 {
        font-size: 3rem;
    }
    
    .story-hero {
        min-height: 70vh;
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .story-hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .story-hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-text-content::before {
        display: none;
    }
    
    .story-text-content {
        text-align: center;
        padding: 1rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-section,
    .story-impact {
        padding: 4rem 0;
    }
    
    .value-item,
    .goal-item,
    .impact-card {
        padding: 1.5rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .story-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-item,
    .goal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .goal-icon {
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    .story-hero,
    .story-section,
    .story-impact {
        background: none !important;
        box-shadow: none !important;
    }
    
    .story-hero-image,
    .value-item,
    .goal-item,
    .impact-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .story-hero-content h1::after,
    .section-title::after {
        display: none;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(176, 224, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 224, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a4b6e, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00a8b5, transparent);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(176, 224, 230, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(176, 224, 230, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.05) 0%, rgba(0, 168, 181, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(176, 224, 230, 0.25);
    border-color: #00a8b5;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.1) 0%, rgba(0, 168, 181, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.2) 0%, rgba(0, 168, 181, 0.3) 100%);
    box-shadow: 0 10px 20px rgba(0, 168, 181, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: #00a8b5;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: #1a4b6e;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a4b6e;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a4b6e, #00a8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Call to Action Section */
.cta-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(176, 224, 230, 0.2);
    border: 1px solid rgba(176, 224, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.05) 0%, rgba(0, 168, 181, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-section:hover::before {
    opacity: 1;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a4b6e;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    color: #6c757d;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 181, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.3rem;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
    }
    
    .cta-section .btn {
        margin-bottom: 1rem;
    }
}

/* Modal button styles */
.modal .btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

.modal .btn-info {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
} 

/* --- Enhanced Product Detail Section Styles --- */
.product-detail-section {
    max-width: 1100px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(13, 202, 240, 0.08);
    padding: 3rem 2rem 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}
.product-detail-section .row.align-items-start {
    align-items: flex-start !important;
}
.product-detail-section .col-md-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.product-detail-section .carousel {
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(13, 202, 240, 0.10);
    border-radius: 16px;
    background: #f8f9fa;
}
.product-detail-section .fw-bold {
    font-size: 2.2rem;
    color: #176d6d;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.product-detail-section .h4.text-info {
    font-size: 2rem;
    background: linear-gradient(90deg, #0dcaf0, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.product-detail-section .badge.bg-danger {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
}
.product-detail-section .product-description-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.05);
}
.product-detail-section .quantity-selector {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-detail-section .quantity-btn {
    background: #e0f7fa;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    color: #176d6d;
    transition: background 0.2s, color 0.2s;
}
.product-detail-section .quantity-btn:hover {
    background: #0dcaf0;
    color: #fff;
}
.product-detail-section .quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #b2ebf2;
    border-radius: 6px;
    font-size: 1.1rem;
    padding: 0.3rem 0.5rem;
}
.product-detail-section .btn-lg {
    font-size: 1.1rem;
    padding: 0.7rem 2.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.08);
    transition: background 0.2s, transform 0.2s;
    min-width: 160px;
}
.product-detail-section .btn-info {
    background: linear-gradient(90deg, #0dcaf0, #0d6efd);
    border: none;
    color: #fff;
}
.product-detail-section .btn-info:hover {
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.product-detail-section .btn-success {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
    border: none;
    color: #fff;
}
.product-detail-section .btn-success:hover {
    background: linear-gradient(90deg, #38f9d7, #43e97b);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.product-detail-section .btn-outline-info {
    border: 2px solid #0dcaf0;
    color: #0dcaf0;
    background: #fff;
}
.product-detail-section .btn-outline-info:hover {
    background: #0dcaf0;
    color: #fff;
}
.product-detail-section .btn-outline-danger {
    border: 2px solid #ff416c;
    color: #ff416c;
    background: #fff;
    transition: all 0.2s;
}
.product-detail-section .btn-outline-danger:hover {
    background: #ff416c;
    color: #fff;
}
.product-detail-section .d-flex.gap-3 {
    gap: 1rem !important;
    flex-wrap: wrap;
}
.product-detail-section .row.g-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.product-detail-section .row.g-3 .col-6 {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-detail-section .row.g-3 .col-6:hover {
    background: rgba(1, 172, 179, 0.1);
    transform: translateY(-2px);
}
.product-detail-section .wishlist-btn {
    margin-top: 1rem;
    min-width: 160px;
}
@media (max-width: 991.98px) {
    .product-detail-section {
        flex-direction: column;
        padding: 2rem 0.5rem 2rem 0.5rem;
    }
    .product-detail-section .fw-bold {
        font-size: 1.5rem;
    }
    .product-detail-section .h4.text-info {
        font-size: 1.2rem;
    }
}
@media (max-width: 767.98px) {
    .product-detail-section {
        padding: 1.2rem 0.5rem 2rem 0.5rem;
    }
    .product-detail-section .fw-bold {
        font-size: 1.2rem;
    }
    .product-detail-section .h4.text-info {
        font-size: 1rem;
    }
    .product-detail-section .btn-lg, .product-detail-section .wishlist-btn {
        width: 100%;
        min-width: unset;
        margin-bottom: 0.7rem;
    }
    .product-detail-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.7rem !important;
    }
    .product-detail-section .row.g-3 .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 575.98px) {
    .product-detail-section {
        padding: 0.7rem 0.2rem 1.2rem 0.2rem;
    }
    .product-detail-section .fw-bold {
        font-size: 1rem;
    }
    .product-detail-section .h4.text-info {
        font-size: 0.9rem;
    }
    .product-detail-section .product-description-card {
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
    }
}

/* Make Send Message button text white */
.btn-info {
    color: #fff !important;
}

.contact-send-btn {
    color: #fff !important;
}

@media (max-width: 991.98px) {
  .story-hero {
    min-height: 50vh;
    padding: 2.5rem 0 1.5rem 0;
  }
  .story-hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0.5rem;
  }
  .story-hero-content h1 {
    font-size: 2.1rem;
  }
  .story-hero-content h1::after {
    margin-left: auto;
    margin-right: auto;
  }
  .story-hero-image {
    margin: 0 auto 1.5rem auto;
    max-width: 400px;
  }
}

@media (max-width: 767.98px) {
  .story-hero {
    flex-direction: column;
    padding: 1.5rem 0 1rem 0;
  }
  .story-hero-content {
    padding: 1rem 0.25rem;
  }
  .story-hero-content h1 {
    font-size: 1.5rem;
  }
  .story-hero-content p {
    font-size: 1rem;
  }
  .story-hero-image {
    max-width: 90vw;
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 575.98px) {
  .story-hero-content {
    padding: 0.75rem 0.1rem;
    border-radius: 1rem;
  }
  .story-hero-content h1 {
    font-size: 1.15rem;
  }
  .story-hero-content p {
    font-size: 0.95rem;
  }
  .story-hero-image {
    max-width: 98vw;
    border-radius: 1rem;
  }
  .story-hero-image img {
    border-radius: 1rem;
  }
}

@media (max-width: 767.98px) {
  .about-section .row.align-items-center {
    flex-direction: column-reverse !important;
    text-align: center;
  }
  .about-section .content-wrapper {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    text-align: center;
  }
  .about-section .image-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }
  .about-section .image-wrapper img {
    max-width: 90vw;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(30,60,90,0.08);
  }
  .about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .about-section p.lead {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }
  .about-section p {
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
  }
  .about-section .btn {
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 1.5rem 0 !important;
  }
  .about-section .content-wrapper {
    padding: 0.5rem 0.1rem 0.1rem 0.1rem;
  }
  .about-section .image-wrapper img {
    max-width: 98vw;
    border-radius: 0.75rem;
  }
  .about-section h2 {
    font-size: 1.15rem;
  }
  .about-section p.lead, .about-section p {
    font-size: 0.93rem;
  }
}

@media (max-width: 575.98px) {
  .product-card {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    padding: 1.2rem 0.7rem !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.10);
  }
  .product-card .card-img-top {
    height: 140px !important;
    border-radius: 10px !important;
  }
  .product-card .card-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.4rem !important;
  }
  .product-card .card-text {
    font-size: 0.98rem !important;
    margin-bottom: 0.7rem !important;
  }
  .product-card .price {
    font-size: 1.15rem !important;
  }
  .product-card .btn-outline-info, .product-card .add-to-cart-btn {
    width: 100% !important;
    font-size: 1.05rem !important;
    padding: 0.7rem 0 !important;
    margin-top: 0.5rem !important;
    border-radius: 8px !important;
  }
  .product-card .d-flex {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .product-detail-section {
    flex-direction: column;
    padding: 0.5rem 0.2rem 1rem 0.2rem;
    border-radius: 10px;
  }
  .product-detail-section .col-md-5,
  .product-detail-section .col-md-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .product-detail-section .carousel,
  .product-detail-section .carousel-inner,
  .product-detail-section .carousel-item img {
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    border-radius: 10px !important;
  }
  .product-detail-section .fw-bold {
    font-size: 1.1rem;
  }
  .product-detail-section .h4.text-info {
    font-size: 1rem;
  }
  .product-detail-section .btn-lg,
  .product-detail-section .wishlist-btn {
    width: 100%;
    min-width: unset;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
  }
  .product-detail-section .d-flex.flex-wrap.gap-3 {
    flex-direction: column !important;
    gap: 0.7rem !important;
  }
  .product-detail-section .row.g-3 .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
  .related-products-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .related-product-card {
    margin-bottom: 1rem;
  }
  .modal-dialog {
    margin: 0.5rem;
    max-width: 98vw;
  }
  .modal-content {
    padding: 0.5rem;
  }
  .modal-body, .modal-footer {
    padding: 0.5rem;
  }
}
@media (max-width: 400px) {
  .product-detail-section {
    padding: 0.2rem 0.05rem 0.5rem 0.05rem;
  }
  .product-detail-section .fw-bold {
    font-size: 0.95rem;
  }
}

.wishlist-btn .btn {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wishlist-btn .bi-heart {
  font-size: 1.3rem;
}
@media (max-width: 575.98px) {
  .wishlist-btn .btn {
    width: 32px;
    height: 32px;
  }
  .wishlist-btn .bi-heart {
    font-size: 1.1rem;
  }
}

/* Modernized Category Section Styles */
.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1);
}
.category-link:hover .category-card {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(1,172,179,0.13);
}
.category-img-gradient {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(1,172,179,0.10) 0%, rgba(13,202,240,0.10) 100%);
}
.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(31,38,135,0.10);
  transition: filter 0.3s;
}
.category-img-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,172,179,0.18) 0%, rgba(13,202,240,0.13) 100%);
  opacity: 0.7;
  z-index: 1;
}
.category-icon {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  right: 12px;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #01acb3 0%, #0dcaf0 100%);
  border-radius: 50%;
  padding: 0.4em 0.5em;
  box-shadow: 0 2px 8px rgba(1,172,179,0.18);
  opacity: 0.92;
}
.category-card {
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(1,172,179,0.07);
  transition: box-shadow 0.3s, transform 0.2s;
  background: #fff;
  min-height: 220px;
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.category-card h3 {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.category-card:hover h3 {
  color: #01acb3;
}
@media (max-width: 991.98px) {
  .category-img-gradient {
    height: 90px;
  }
  .category-card {
    min-height: 170px;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .category-img-gradient {
    height: 60px;
  }
  .category-card {
    min-height: 120px;
    padding: 0.5rem 0.2rem 0.2rem 0.2rem;
  }
  .category-card h3 {
    font-size: 1rem;
  }
  .category-icon {
    font-size: 1.2rem;
    bottom: 6px;
    right: 6px;
  }
}

/* Category Carousel Styles */
.category-carousel-wrapper {
  position: relative;
  width: 100%;
}
#categoryCarouselRow {
  overflow-x: auto;
  flex-wrap: nowrap !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
#categoryCarouselRow::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
#categoryCarouselRow1,
#categoryCarouselRow2 {
  overflow-x: auto;
  flex-wrap: nowrap !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
#categoryCarouselRow1::-webkit-scrollbar,
#categoryCarouselRow2::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
#claywareCategoryNavSwipe {
  overflow-x: auto;
  flex-wrap: nowrap !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
#claywareCategoryNavSwipe::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
#ceramicsCategoryNavSwipe,
#wovenCategoryNavSwipe,
#woodenCategoryNavSwipe,
#specialCategoryNavSwipe,
#rattanCategoryNavSwipe {
  overflow-x: auto;
  flex-wrap: nowrap !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
#ceramicsCategoryNavSwipe::-webkit-scrollbar,
#wovenCategoryNavSwipe::-webkit-scrollbar,
#woodenCategoryNavSwipe::-webkit-scrollbar,
#specialCategoryNavSwipe::-webkit-scrollbar,
#rattanCategoryNavSwipe::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(1,172,179,0.85);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(1,172,179,0.18);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.carousel-arrow.left {
  left: -20px;
}
.carousel-arrow.right {
  right: -20px;
}
.carousel-arrow:hover {
  background: #0dcaf0;
  box-shadow: 0 4px 16px rgba(1,172,179,0.25);
}
@media (max-width: 991.98px) {
  .carousel-arrow {
    display: none !important;
  }
  #categoryCarouselRow {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
  }
}