/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #333;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews span {
    color: #333;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo i {
    margin-right: 8px;
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007bff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 12px 45px 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    width: 320px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-box input:focus {
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.05);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.icon-btn:hover {
    color: #007bff;
    background: rgba(0,123,255,0.1);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(231,76,60,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-pets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-self: center;
}

.pet-slider {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e9ecef;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pet-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.pet-image.active {
    opacity: 1;
}

.pet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pet-indicators {
    display: flex;
    gap: 20px;
}

.indicator {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e9ecef;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 22px;
    color: #666;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.indicator:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-3px);
}

.indicator.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.hero-text {
    justify-self: start;
    max-width: 100%;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.highlight {
    color: #007bff;
    display: block;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-text p {
    font-size: 18px;
    color: #777;
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 450px;
}

.btn-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.5);
}

/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 30px 0;
    margin-top: 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.trust-item i {
    font-size: 28px;
    color: #2c3e50;
    min-width: 28px;
}

.trust-item strong {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 3px;
    line-height: 1.3;
}

.trust-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* Buttons */
.btn-primary {
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.btn-sale {
    background: #ffd700;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-sale:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card.accessories {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.category-card.clothes {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.category-card.carriers {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.category-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.category-label {
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.category-info h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.category-link {
    background: rgba(255,255,255,0.9);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.category-link:hover {
    background: #007bff;
    color: white;
}

/* Flash Sale Banner */
.flash-sale {
    padding: 40px 0;
}

.sale-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
}

.sale-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sale-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.sale-icon i {
    font-size: 30px;
    color: #ffd700;
}

.discount {
    background: #ffd700;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 18px;
}

.sale-text h3 {
    margin-bottom: 8px;
}

.sale-text p {
    opacity: 0.9;
}

/* Shop by Animal */
.shop-by-animal {
    padding: 80px 0;
}

.shop-by-animal h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.animal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.animal-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    flex: 0 0 auto;
    min-width: 120px;
}

.animal-item:hover {
    border-color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.1);
}

.animal-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.animal-item h3 {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

/* Hide duplicate items on desktop */
.trust-item:nth-child(n+6) {
    display: none;
}

.animal-item:nth-child(n+7) {
    display: none;
}

/* Disable carousel animations on desktop */
.trust-grid {
    animation: none !important;
}

.animal-grid {
    animation: none !important;
    transition: transform 0.3s ease;
    cursor: grab;
}

.animal-grid:active {
    cursor: grabbing;
}

.trust-indicators::before,
.trust-indicators::after,
.shop-by-animal::before,
.shop-by-animal::after {
    display: none;
}

/* Health Services */
.health-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.services-image {
    flex: 1;
}

.services-image img {
    width: 100%;
    border-radius: 20px;
}

.services-info {
    flex: 1;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.services-icon {
    background: #ffd700;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-icon i {
    font-size: 24px;
    color: #2c3e50;
}

.services-info h2 {
    font-size: 42px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.services-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.services-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    background: #e3f2fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #007bff;
}

.service-item h3 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-products .container {
    max-width: 1400px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
}

.product-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    background: white !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-btn.active {
    background: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
}

.view-all {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.wishlist-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(231,76,60,0.4);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.product-card p {
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    padding: 0 20px 20px;
    margin-top: auto;
}

.product-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 15px;
}

.price {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.product-rating {
    padding: 0 20px 12px;
    display: flex;
    gap: 4px;
}

.product-rating i {
    color: #ffc107;
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(255,193,7,0.3);
}

.animal-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #333;
}

.store-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.store-info a {
    color: #007bff;
    text-decoration: none;
}

.store-info a:hover {
    text-decoration: underline;
}

.newsletter {
    margin-bottom: 40px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.newsletter-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.newsletter-form input:focus {
    border-color: #007bff;
}

.newsletter-form button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #34495e;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #666;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 18px;
    cursor: pointer;
    color: #2c3e50;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s;
    min-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: white;
    color: #007bff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

/* Cart Page Header - Smaller */
.cart-page .page-header {
    padding: 40px 0;
}

.cart-page .breadcrumb {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.cart-page .breadcrumb a {
    color: white;
    font-weight: 500;
}

.cart-page .breadcrumb a:hover {
    color: rgba(255,255,255,0.8);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: rgb(196, 196, 196);
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

/* Enhanced Products Header */
.products-header {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.products-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

/* Search Filters */
.search-filters {
    margin-bottom: 25px;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    z-index: 2;
}

.search-input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

.search-input-wrapper input:focus {
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
}

.clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #6c757d;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 12px;
}

.clear-search:hover {
    background: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

/* Filters Row */
.filters-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 160px;
    color: #495057;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.filter-select:hover {
    border-color: #ced4da;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.filter-select:focus {
    border-color: #007bff;
}

/* Hide mobile elements on desktop */
.mobile-search,
.mobile-filters-toggle,
.mobile-filters {
    display: none;
}

/* Show desktop filters */
.desktop-filters {
    display: flex !important;
}

.btn-add-cart {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px!important;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin: 15px 20px 20px 20px;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-add-cart:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.load-more-section {
    text-align: center;
    margin-top: 50px;
}

/* Enhanced Shop Components */

/* Animal Categories Section */
.animal-categories {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.animal-categories h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.animal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.animal-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    background: white;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.animal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
    transition: left 0.5s;
}

.animal-item:hover::before {
    left: 100%;
}

.animal-item:hover {
    border-color: #007bff;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,123,255,0.15);
}

.animal-item.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.animal-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.animal-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.animal-item.active img {
    border-color: white;
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.animal-item h3 {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.animal-item.active h3 {
    color: white;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.no-products i {
    font-size: 64px;
    color: #6c757d;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-products p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/* Flash Sale Banner Enhancements */
.flash-sale {
    padding: 30px 0;
}

.sale-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.sale-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.sale-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.sale-content h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.sale-content i {
    font-size: 32px;
    color: #ffd700;
    animation: pulse 2s infinite;
}

.sale-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255,255,255,0.15);
    padding: 15px 12px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* About Page Tablet Optimizations */
    .about-text h2 {
        font-size: 40px;
    }
    
    .mission-text h2 {
        font-size: 36px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Shop Mobile Responsiveness */
    .products-header {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .products-header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .search-input-wrapper input {
        padding: 14px 45px 14px 45px;
        font-size: 14px;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .animal-categories {
        padding: 40px 0;
    }
    
    .animal-categories h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .animal-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .animal-item {
        min-width: 110px;
        padding: 20px 15px;
    }
    
    .animal-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .animal-item h3 {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-card h3 {
        padding: 15px 15px 8px;
        font-size: 15px;
        min-height: 85px;
    }
    
    .product-card p {
        padding: 0 15px;
        font-size: 13px;
    }
    
    .product-price {
        padding: 0 15px 15px;
    }
    
    .product-price .price {
        font-size: 16px;
    }
    
    .btn-add-cart {
        width: calc(100% - 30px);
        margin: 0 auto 12px auto;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .flash-sale {
        padding: 20px 0;
    }
    
    .sale-banner {
        padding: 20px;
        border-radius: 16px;
    }
    
    .sale-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sale-content h2 {
        font-size: 22px;
    }
    
    .countdown {
        gap: 10px;
        justify-content: center;
    }
    
    .countdown-item {
        padding: 12px 10px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .no-products {
        padding: 60px 20px;
    }
    
    .no-products i {
        font-size: 48px;
    }
    
    .no-products h3 {
        font-size: 20px;
    }
    
    .no-products p {
        font-size: 14px;
    }
    
    /* Header Mobile */
    .top-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        font-size: 16px;
        color: #2c3e50;
        padding: 6px;
        min-width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    
    .mobile-menu-btn:hover {
        background: #f8f9fa;
        color: #007bff;
        box-shadow: none;
        transform: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin-bottom: 15px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .search-box {
        display: none;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .icon-btn {
        font-size: 16px;
        min-width: 32px;
        height: 32px;
        padding: 6px;
        border-radius: 10px;
    }
    
    .icon-btn:hover {
        transform: none;
        background: rgba(0,123,255,0.08);
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: 1px;
        right: 1px;
        border: 1px solid white;
        animation: none;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-pets {
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .pet-slider {
        width: 320px;
        height: 320px;
    }
    
    .indicator {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Animal Grid Mobile */
    .animal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .animal-item img {
        width: 80px;
        height: 80px;
    }
    
    .animal-item h3 {
        font-size: 16px;
    }
    
    /* Trust Indicators Mobile - Carousel */
    .trust-indicators {
        padding: 15px 0;
        position: relative;
        overflow: hidden;
    }
    
    /* Show duplicate items on mobile */
    .trust-item:nth-child(n+6) {
        display: flex !important;
    }
    
    .trust-grid {
        display: flex;
        gap: 15px;
        animation: trust-scroll 20s linear infinite !important;
        width: max-content;
    }
    
    .trust-item {
        background: white;
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        flex-shrink: 0;
        text-align: left;
    }
    
    .trust-item i {
        font-size: 18px;
        color: #007bff;
        flex-shrink: 0;
    }
    
    .trust-item strong {
        font-size: 12px;
        display: block;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .trust-item p {
        font-size: 10px;
        margin: 0;
        line-height: 1.2;
        color: #666;
    }
    
    .trust-indicators::before,
    .trust-indicators::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        z-index: 2;
        pointer-events: none;
        display: block !important;
    }
    
    .trust-indicators::before {
        left: 0;
        background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    }
    
    .trust-indicators::after {
        right: 0;
        background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    }
    
    @keyframes trust-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Categories Mobile */
    .categories {
        padding: 40px 0;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 200px;
    }
    
    /* Flash Sale Mobile */
    .sale-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .sale-icon {
        justify-content: center;
    }
    
    /* Shop by Animal Mobile - Carousel */
    .shop-by-animal {
        padding: 30px 0;
        position: relative;
        overflow: hidden;
    }
    
    .shop-by-animal h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Show duplicate items on mobile */
    .animal-item:nth-child(n+7) {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .animal-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 12px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .animal-grid::-webkit-scrollbar {
        display: none;
    }
    
    .animal-item {
        background: white;
        border-radius: 12px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: 90px;
        max-width: 90px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        flex-shrink: 0;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s;
        scroll-snap-align: start;
    }
    
    /* Override any conflicting styles */
    .animal-grid .animal-item {
        flex-direction: column !important;
    }
    
    .animal-item:hover {
        border-color: #007bff;
        transform: translateY(-2px);
    }
    
    .animal-item img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    .animal-item h3 {
        font-size: 12px;
        margin: 0;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .shop-by-animal::before,
    .shop-by-animal::after {
        display: none !important;
    }
    
    @keyframes animal-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Services Mobile */
    .health-services {
        padding: 40px 0;
    }
    
    .services-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-header {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: center;
    }
    
    .services-info h2 {
        font-size: 28px;
    }
    
    .services-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .service-item {
        padding: 15px 10px;
        text-align: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 2px solid transparent;
        transition: all 0.3s;
    }
    
    .service-item:hover {
        border-color: #007bff;
        transform: translateY(-2px);
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
        background: #e3f2fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon i {
        font-size: 18px;
        color: #007bff;
    }
    
    .service-item h3 {
        font-size: 13px;
        margin: 0;
        color: #2c3e50;
        font-weight: 600;
    }
    
    /* Ensure 2x2 layout */
    .service-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .service-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .service-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .service-item:nth-child(4) { grid-column: 2; grid-row: 2; }
    
    /* Featured Products Mobile */
    .featured-products {
        padding: 40px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-card h3 {
        font-size: 14px;
        min-height: 70px;
        padding: 12px 12px 6px;
    }
    
    .product-price {
        font-size: 14px;
        padding: 0 12px 12px;
    }
    
    .product-price .price {
        font-size: 15px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    /* Products Section Mobile */
    .products-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Hide desktop filters on mobile */
    .desktop-filters {
        display: none !important;
    }
    
    /* Mobile Search Bar */
    .mobile-search {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background: white;
        border-radius: 25px;
        padding: 12px 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: 2px solid transparent;
        transition: all 0.3s;
    }
    
    .search-input-wrapper:focus-within {
        border-color: #007bff;
        box-shadow: 0 4px 15px rgba(0,123,255,0.2);
    }
    
    .search-input-wrapper i.fa-search {
        color: #666;
        margin-right: 12px;
        font-size: 16px;
    }
    
    .search-input-wrapper input {
        flex: 1;
        border: none;
        background: none;
        font-size: 16px;
        outline: none;
        color: #333;
    }
    
    .search-input-wrapper input::placeholder {
        color: #999;
    }
    
    .clear-search {
        background: none;
        border: none;
        color: #999;
        padding: 5px;
        margin-left: 8px;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .clear-search:hover {
        background: #f0f0f0;
        color: #333;
    }
    
    /* Mobile Filters Toggle */
    .mobile-filters-toggle {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filters-toggle-btn {
        width: 100%;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .filters-toggle-btn:hover {
        border-color: #007bff;
        background: #f8f9ff;
    }
    
    .filters-toggle-btn.active {
        border-color: #007bff;
        background: #007bff;
        color: white;
    }
    
    .filters-toggle-btn i.fa-sliders-h {
        margin-right: 10px;
    }
    
    .filters-toggle-btn i.fa-chevron-down {
        transition: transform 0.3s;
    }
    
    .filters-toggle-btn.active i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Mobile Filters Panel */
    .mobile-filters {
        background: white;
        border-radius: 15px;
        padding: 0;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        opacity: 0;
    }
    
    .mobile-filters.show {
        max-height: 1000px;
        opacity: 1;
        padding: 20px;
    }
    
    .filter-section {
        margin-bottom: 25px;
    }
    
    .filter-section:last-of-type {
        margin-bottom: 0;
    }
    
    .filter-section h4 {
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-pill {
        display: flex;
        align-items: center;
        gap: 6px;
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 20px;
        padding: 8px 14px;
        font-size: 14px;
        color: #666;
        transition: all 0.3s;
        cursor: pointer;
        min-height: 36px;
    }
    
    .filter-pill:hover {
        border-color: #007bff;
        background: #f0f8ff;
        color: #007bff;
    }
    
    .filter-pill.active {
        background: #007bff;
        border-color: #007bff;
        color: white;
    }
    
    .filter-pill i {
        font-size: 12px;
    }
    
    .filter-pill span {
        font-weight: 500;
    }
    
    /* Filter Actions */
    .filter-actions {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }
    
    .btn-clear-filters,
    .btn-apply-filters {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .btn-clear-filters {
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        color: #666;
    }
    
    .btn-clear-filters:hover {
        border-color: #dc3545;
        background: #fff5f5;
        color: #dc3545;
    }
    
    .btn-apply-filters {
        background: #007bff;
        border: 2px solid #007bff;
        color: white;
    }
    
    .btn-apply-filters:hover {
        background: #0056b3;
        border-color: #0056b3;
        transform: translateY(-1px);
    }
    
    .filters {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
         .filter-select {
         width: 100%;
         max-width: 200px;
     }
     
     /* Contact Page Mobile */
     .contact-info {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     
     .contact-form {
         grid-template-columns: 1fr;
         gap: 15px;
     }
     
     .form-group input,
     .form-group textarea {
         font-size: 16px;
         padding: 15px;
     }
     
     .btn-primary {
         padding: 15px 30px;
         font-size: 16px;
     }
     
     /* Pansion Page Mobile */
     .services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .service-card {
         text-align: center;
     }
     
     .pricing-table {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .pricing-card {
         text-align: center;
     }
     
     /* O nama Page Mobile */
     .about-content {
         gap: 30px;
     }
     
     .about-hero {
         text-align: center;
     }
     
     .stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
     
     .team-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     
     /* Form Elements Mobile */
     input[type="text"],
     input[type="email"],
     input[type="tel"],
     textarea,
     select {
         font-size: 16px !important;
         -webkit-appearance: none;
         border-radius: 8px;
     }
     
     /* Newsletter Mobile */
     .newsletter-signup {
         padding: 30px 0;
     }
     
     .newsletter-signup h3 {
         font-size: 20px;
     }
     
     /* Utility Classes Mobile */
     .btn {
         min-height: 44px;
         touch-action: manipulation;
     }
     
     .icon-btn {
         min-width: 44px;
         min-height: 44px;
     }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Hero Extra Small */
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .pet-slider {
        width: 280px;
        height: 280px;
    }
    
    .indicator {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .pet-indicators {
        gap: 15px;
    }
    
    /* Animal Grid - Keep horizontal carousel on all mobile sizes */
    .animal-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: flex-start;
        gap: 12px;
        width: max-content;
        transition: transform 0.3s ease;
        cursor: grab;
    }
    
    .animal-grid:active {
        cursor: grabbing;
    }
    
    .animal-item {
        min-width: 80px;
        padding: 10px 8px;
        flex-shrink: 0;
    }
    
    .animal-item img {
        width: 45px;
        height: 45px;
    }
    
    .animal-item h3 {
        font-size: 11px;
    }
    
    /* Trust Grid - Keep carousel on all mobile sizes */
    .trust-grid {
        display: flex !important;
        gap: 12px;
        animation: trust-scroll 20s linear infinite !important;
        width: max-content;
    }
    
    .trust-item {
        min-width: 180px;
        background: white;
        border-radius: 10px;
        padding: 10px 14px;
        flex-shrink: 0;
    }
    
    .trust-item i {
        font-size: 16px;
    }
    
    .trust-item strong {
        font-size: 11px;
    }
    
    .trust-item p {
        font-size: 9px;
    }
    
    /* Enable fade effects on small screens */
    .trust-indicators::before,
    .trust-indicators::after,
    .shop-by-animal::before,
    .shop-by-animal::after {
        display: block !important;
    }
    
    /* Ensure carousels work on small mobile */
    .trust-indicators {
        overflow: hidden !important;
        position: relative;
    }
    
    .shop-by-animal {
        overflow: hidden !important;
        position: relative;
    }
    
    /* Show duplicate items on small mobile */
    .trust-item:nth-child(n+6) {
        display: flex !important;
    }
    
    .animal-item:nth-child(n+7) {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Footer 1 Column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }
    
    /* Products Single Column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    
    /* Services Grid 2x2 on Small Mobile */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 10px;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .service-item {
        padding: 12px 8px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 8px;
    }
    
    .service-icon i {
        font-size: 14px;
    }
    
    .service-item h3 {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Header Icons Extra Small Mobile */
    .header-icons {
        gap: 6px;
    }
    
    .icon-btn {
        font-size: 15px;
        min-width: 28px;
        height: 28px;
        padding: 4px;
        border-radius: 8px;
    }
    
    .cart-count {
        width: 14px;
        height: 14px;
        font-size: 9px;
        top: 0px;
        right: 0px;
        border: 1px solid white;
    }
    
    .mobile-menu-btn {
        font-size: 14px;
        padding: 4px;
        min-width: 28px;
        height: 28px;
        border-radius: 8px;
    }
    
    /* Typography Adjustments */
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }
    
    /* Contact Info Cards */
    .contact-info .info-card {
        padding: 20px;
    }
    
    /* About Stats */
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-badge i {
    font-size: 16px;
}

.about-text h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 8px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.our-mission {
    padding: 80px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.point i {
    font-size: 20px;
    color: #007bff;
    margin-top: 5px;
}

.point h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.point p {
    color: #666;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
}

.our-brands {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-brands h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.brand-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-logo {
    margin-bottom: 20px;
}

.brand-logo img {
    max-height: 80px;
}

.brand-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.brand-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-card ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.brand-card li {
    margin-bottom: 8px;
    color: #666;
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    background: #e3f2fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #007bff;
}

.feature-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Services Page Styles */
.services-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.services-detailed {
    padding: 80px 0;
}

.services-detailed h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detailed {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 8px;
    color: #666;
}

.pricing h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: #666;
}

.price-item span:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-content {
    display: flex;
    gap: 50px;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.booking-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    font-size: 24px;
    color: #007bff;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-method p {
    margin-bottom: 2px;
    color: #333;
}

.contact-method small {
    color: #666;
}

.booking-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.booking-form h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: #e3f2fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: #007bff;
}

.contact-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.form-success i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #28a745;
}

.form-success h3 {
    margin-bottom: 10px;
}

.map-section {
    flex: 1;
}

.map-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-section p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.map-container {
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.location-details h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-option i {
    font-size: 24px;
    color: #007bff;
}

.location-option h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.location-option p {
    margin: 0;
    color: #666;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.social-media {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-media h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-media p {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    color: white;
    font-weight: 600;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .about-content,
    .mission-content,
    .services-hero-content,
    .service-detailed,
    .booking-content,
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Services Hero Mobile Optimization */
    .services-hero {
        padding: 50px 0;
    }
    
    .hero-text h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Services Detailed Mobile Optimization */
    .services-detailed {
        padding: 50px 0;
    }
    
    .services-detailed h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .services-grid-detailed {
        gap: 40px;
    }
    
    .service-detailed {
        flex-direction: column;
        gap: 20px;
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 10px;
    }
    
    .service-detailed:nth-child(even) {
        flex-direction: column;
    }
    
    .service-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .service-content p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .service-icon {
        background: #e3f2fd;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .service-icon i {
        font-size: 18px;
        color: #007bff;
    }
    
    .service-features h4 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #007bff;
        font-weight: 600;
    }
    
    .service-features ul {
        margin-bottom: 20px;
        padding-left: 0;
    }
    
    .service-features li {
        margin-bottom: 6px;
        font-size: 14px;
        padding-left: 10px;
        position: relative;
    }
    
    .pricing h4 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #007bff;
        font-weight: 600;
    }
    
    .price-list {
        padding: 15px;
        border-radius: 10px;
        background: #f8f9ff;
    }
    
    .price-item {
        padding: 8px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        border-bottom: 1px solid #e0e8ff;
    }
    
    .price-item:last-child {
        border-bottom: none;
    }
    
    .price-item span:first-child {
        font-size: 14px;
        color: #666;
    }
    
    .price-item span:last-child {
        font-size: 16px;
        font-weight: 700;
        color: #007bff;
    }
    
    /* Booking Section Mobile Optimization */
    .booking-section {
        padding: 50px 0;
    }
    
    .booking-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .booking-info p {
        margin-bottom: 30px;
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
    }
    
    .contact-methods {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .contact-method {
        background: white;
        padding: 18px;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s;
        border-left: 4px solid #007bff;
    }
    
    .contact-method:hover {
        transform: translateY(-2px);
    }
    
    .contact-method i {
        font-size: 18px;
        background: #e3f2fd;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #007bff;
    }
    
    .contact-method h4 {
        font-size: 16px;
        margin-bottom: 4px;
        color: #2c3e50;
    }
    
    .contact-method p {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
        color: #007bff;
    }
    
    .contact-method small {
        font-size: 13px;
        color: #666;
    }
    
    /* Booking Form Mobile Optimization */
    .booking-form {
        padding: 25px;
        border-radius: 15px;
        margin-top: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .booking-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
        color: #2c3e50;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        margin-bottom: 6px;
        font-size: 14px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        outline: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .form-note {
        margin-top: 15px;
        font-size: 13px;
        text-align: center;
    }
    
    /* About Page Mobile Optimizations */
    .about-hero {
        padding: 50px 0;
    }
    
    .about-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .about-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .about-text h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .lead {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px;
        background: #f8f9ff;
        border-left: 4px solid #007bff;
    }
    
    .stat-item h3 {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
    
    /* Mission Section Mobile */
    .our-mission {
        padding: 50px 0;
    }
    
    .mission-content {
        gap: 30px;
    }
    
    .mission-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .mission-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .mission-points {
        margin-top: 25px;
    }
    
    .point {
        gap: 12px;
        margin-bottom: 20px;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .point i {
        font-size: 18px;
        margin-top: 3px;
    }
    
    .point h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .point p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Brands Section Mobile */
    .our-brands {
        padding: 50px 0;
    }
    
    .our-brands h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .brand-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .brand-logo {
        margin-bottom: 15px;
    }
    
    .brand-logo img {
        max-height: 60px;
    }
    
    .brand-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .brand-card p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .brand-card ul {
        max-width: 100%;
    }
    
    .brand-card li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    /* Features Section Mobile */
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        text-align: center;
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile Optimizations */
    .contact-info {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
        border-radius: 15px;
        border-left: 4px solid #007bff;
        transition: transform 0.3s;
    }
    
    .contact-card:hover {
        transform: translateY(-3px);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #2c3e50;
    }
    
    .contact-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 5px;
    }
    
    .contact-card a {
        font-weight: 600;
        font-size: 16px;
        color: #007bff;
    }
    
    .contact-card small {
        font-size: 13px;
        color: #666;
    }
    
    /* Contact Main Section Mobile */
    .contact-main {
        padding: 50px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-form-section p {
        font-size: 15px;
        margin-bottom: 30px;
        text-align: center;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 25px;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #2c3e50;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    }
    
    .checkbox-group {
        align-items: flex-start;
        gap: 12px;
    }
    
    .checkbox-group label {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        margin-top: 10px;
    }
    
    /* Map Section Mobile */
    .map-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .map-section p {
        font-size: 15px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.5;
    }
    
    .map-container {
        margin-bottom: 25px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .location-details h3 {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
        color: #2c3e50;
    }
    
    .location-options {
        gap: 15px;
    }
    
    .location-option {
        padding: 18px;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        border-left: 4px solid #007bff;
        transition: transform 0.3s;
    }
    
    .location-option:hover {
        transform: translateY(-2px);
    }
    
    .location-option i {
        font-size: 20px;
        background: #e3f2fd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .location-option h4 {
        font-size: 16px;
        margin-bottom: 4px;
        color: #2c3e50;
    }
    
    .location-option p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border-left: 4px solid #007bff;
        transition: transform 0.3s;
    }
    
    .faq-item:hover {
        transform: translateY(-3px);
    }
    
    .faq-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #007bff;
        font-weight: 600;
    }
    
    .faq-item p {
        font-size: 14px;
        line-height: 1.5;
        color: #666;
    }
    
    /* Social Media Section Mobile */
    .social-media {
        padding: 50px 0;
    }
    
    .social-media h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .social-media p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-link {
        width: 100%;
        max-width: 280px;
        padding: 18px 25px;
        font-size: 16px;
        justify-content: center;
        border-radius: 15px;
    }
    
    .social-link i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item {
        justify-content: center;
        text-align: center;
    }
    
    .services-info h2 {
        font-size: 32px;
    }
    
    /* Extra Mobile Optimizations for Pansion */
    .services-hero {
        padding: 40px 0;
    }
    
    .hero-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .services-detailed {
        padding: 40px 0;
    }
    
    .services-detailed h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .services-grid-detailed {
        gap: 30px;
    }
    
    .service-detailed {
        padding: 20px;
        margin-bottom: 0;
        gap: 15px;
    }
    
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .service-icon i {
        font-size: 16px;
    }
    
    .service-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .service-features h4,
    .pricing h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .service-features li {
        font-size: 13px;
        margin-bottom: 5px;
        padding-left: 8px;
    }
    
    .price-list {
        padding: 12px;
    }
    
    .price-item {
        padding: 6px 0;
        gap: 3px;
    }
    
    .price-item span:first-child {
        font-size: 13px;
    }
    
    .price-item span:last-child {
        font-size: 15px;
    }
    
    .booking-section {
        padding: 40px 0;
    }
    
    .booking-info h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .booking-info p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .contact-methods {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 15px;
        border-radius: 10px;
    }
    
    .contact-method i {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-method h4 {
        font-size: 15px;
    }
    
    .contact-method p {
        font-size: 14px;
    }
    
    .contact-method small {
        font-size: 12px;
    }
    
    .booking-form {
        padding: 20px;
        border-radius: 12px;
    }
    
    .booking-form h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .btn-primary {
        padding: 14px;
        font-size: 15px;
        margin-top: 8px;
    }
    
    .form-note {
        font-size: 12px;
        margin-top: 12px;
    }
    
    /* Extra Small About Page Optimizations */
    .about-hero {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .about-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .about-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .lead {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .about-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .stats {
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .stat-item h3 {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .stat-item p {
        font-size: 13px;
    }
    
    .our-mission {
        padding: 40px 0;
    }
    
    .mission-content {
        gap: 25px;
    }
    
    .mission-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .mission-text p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .mission-points {
        margin-top: 20px;
    }
    
    .point {
        gap: 10px;
        margin-bottom: 15px;
        padding: 12px;
        border-radius: 8px;
    }
    
    .point i {
        font-size: 16px;
    }
    
    .point h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .point p {
        font-size: 13px;
    }
    
    .our-brands {
        padding: 40px 0;
    }
    
    .our-brands h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .brands-grid {
        gap: 20px;
    }
    
    .brand-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .brand-logo {
        margin-bottom: 12px;
    }
    
    .brand-logo img {
        max-height: 50px;
    }
    
    .brand-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .brand-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .brand-card li {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-us h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .contact-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        max-width: 280px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Extra Small Contact Page Optimizations */
    .contact-info {
        padding: 40px 0;
    }
    
    .contact-grid {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .contact-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .contact-card a {
        font-size: 15px;
    }
    
    .contact-card small {
        font-size: 12px;
    }
    
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-form-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .contact-form-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .contact-form {
        padding: 20px;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .checkbox-group {
        gap: 10px;
    }
    
    .checkbox-group label {
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 14px;
        font-size: 15px;
        margin-top: 8px;
    }
    
    .map-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .map-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .map-container {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .location-details h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .location-options {
        gap: 12px;
    }
    
    .location-option {
        padding: 15px;
        border-radius: 10px;
    }
    
    .location-option i {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }
    
    .location-option h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .location-option p {
        font-size: 13px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        gap: 15px;
    }
    
    .faq-item {
        padding: 20px;
        border-radius: 12px;
    }
    
    .faq-item h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 13px;
    }
    
    .social-media {
        padding: 40px 0;
    }
    
    .social-media h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .social-media p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .social-links-large {
        gap: 12px;
    }
    
    .social-link {
        max-width: 260px;
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* ===== PRODUCT PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    margin: 20px 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Product Detail Section */
.product-detail {
    padding: 40px 0;
    background: white;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s;
}

.main-image:hover img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #007bff;
    transform: translateY(-2px);
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

.rating-count {
    color: #6c757d;
    font-size: 14px;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
}

.old-price {
    font-size: 24px;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Product Description */
.product-description {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.product-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #495057;
}

.feature i {
    color: #28a745;
    width: 16px;
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    min-width: 60px;
}

.size-option:hover,
.size-option.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

/* Enhanced Purchase Options */
.purchase-options {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: white;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.qty-btn:hover {
    background: #007bff;
    color: white;
}

.quantity-input input {
    border: none;
    padding: 10px 8px;
    text-align: center;
    width: 50px;
    font-weight: 600;
    outline: none;
    background: white;
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.btn-wishlist {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,53,69,0.2);
}

.btn-wishlist.active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-wishlist.active:hover {
    background: #c82333;
    border-color: #c82333;
    color: white;
}

/* Enhanced Product Benefits */
.product-benefits {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
}

.benefit i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.benefit:not(:last-child) {
    border-bottom: 1px solid #f8f9fa;
    margin-bottom: 8px;
    padding-bottom: 12px;
}

/* Payment Methods */
.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.payment-methods h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 30px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.payment-icon:hover {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0,123,255,0.1);
    transform: translateY(-1px);
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.meta-item {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.meta-item strong {
    color: #2c3e50;
    min-width: 100px;
}

.meta-item a {
    color: #007bff;
    text-decoration: none;
}

.meta-item a:hover {
    text-decoration: underline;
}

.in-stock {
    color: #28a745;
    font-weight: 600;
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
}

.tabs-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.tabs-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.tab-content h4 {
    color: #495057;
    margin: 25px 0 15px;
    font-size: 18px;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
}

.tab-content li:last-child {
    border-bottom: none;
}

/* Nutrition & Feeding Tables */
.nutrition-table,
.feeding-table {
    margin-top: 20px;
}

.nutrition-row,
.feeding-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.nutrition-row:first-child,
.feeding-row:first-child {
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Reviews */
.reviews-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
}

.total-reviews {
    color: #6c757d;
    font-size: 16px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-header strong {
    color: #2c3e50;
    font-size: 16px;
}

.review-date {
    color: #6c757d;
    font-size: 14px;
    margin-left: auto;
}

.review-item p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: white;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Enhanced Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #6c757d;
    opacity: 0.8;
    z-index: 2;
}

.wishlist-btn:hover {
    color: #dc3545;
    background: white;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(220,53,69,0.3);
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
    z-index: 2;
}

.out-of-stock, .low-stock {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.out-of-stock {
    background: rgba(220,53,69,0.9);
    color: white;
}

.low-stock {
    background: rgba(255,193,7,0.9);
    color: #333;
}

.product-card h3 {
    padding: 20px 20px 8px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

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

.product-card h3 a:hover {
    color: #007bff;
}

.product-card p {
    padding: 0 20px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-price {
    padding: 0 20px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 14px;
    color: #adb5bd;
    text-decoration: line-through;
    font-weight: 500;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-rating {
    padding: 0 20px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    font-size: 14px;
    color: #ffc107;
    text-shadow: 0 1px 2px rgba(255,193,7,0.3);
}

.btn-add-cart {
    width: calc(100% - 40px);
    margin: 0 auto 15px auto;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-add-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.btn-add-cart:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-add-cart:disabled:hover {
    transform: none;
}

.product-card .product-rating {
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-card .product-rating i {
    font-size: 14px;
}

.btn-add-cart {
    width: 100%;
    background: #007bff;
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0;
}

.btn-add-cart:hover {
    background: #0056b3;
}

/* Product Page Mobile Responsive */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image img {
        height: 350px;
    }
    
    .product-header h1 {
        font-size: 26px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    /* Mobile Purchase Options */
    .purchase-options {
        padding: 20px;
    }
    
    .quantity-input {
        border-radius: 10px;
    }
    
    .qty-btn {
        min-width: 36px;
        height: 36px;
        padding: 8px 10px;
    }
    
    .quantity-input input {
        width: 45px;
        padding: 8px 6px;
        font-size: 13px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-add-to-cart {
        order: 1;
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .btn-wishlist {
        order: 2;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 16px;
        align-self: center;
    }
    
    /* Mobile Product Benefits */
    .product-benefits {
        padding: 15px;
    }
    
    .benefit {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .benefit i {
        font-size: 14px;
        width: 18px;
    }
    
    .payment-methods h4 {
        font-size: 13px;
    }
    
    .payment-icons {
        gap: 8px;
    }
    
    .payment-icon {
        width: 40px;
        height: 26px;
    }
    
    .payment-icon i {
        font-size: 14px !important;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin: 15px 0;
    }
    
    .old-price {
        font-size: 20px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-wishlist {
        align-self: center;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-btn {
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .tab-btn.active {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }
    
    .tabs-content {
        padding: 30px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .related-products h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 30px 0;
    }
    
    .breadcrumb {
        margin: 15px 0;
        font-size: 13px;
    }
    
    .main-image img {
        height: 280px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .product-header h1 {
        font-size: 22px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .old-price {
        font-size: 18px;
    }
    
    .size-options {
        justify-content: center;
    }
    
    .size-option {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .product-tabs {
        padding: 40px 0;
    }
    
    .tabs-navigation {
        justify-content: center;
        gap: 8px;
    }
    
    .tab-btn {
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .tab-btn.active {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }
    
    .tabs-content {
        padding: 25px 15px;
    }
    
    .tab-content h3 {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .related-products {
        padding: 40px 0;
    }
    
    .related-products h2 {
                 font-size: 22px;
         margin-bottom: 30px;
     }
 }

/* ===== CART PAGE STYLES ===== */

/* Cart Section */
.cart-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

/* Enhanced Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.empty-cart-icon {
    margin-bottom: 30px;
}

.empty-cart-icon i {
    font-size: 80px;
    color: #e9ecef;
}

.empty-cart h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-cart p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Enhanced Cart Content Layout */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.cart-items {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.cart-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.cart-header h2 {
    font-size: 22px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.clear-cart-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-cart-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Enhanced Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ced4da;
}

/* Desktop Layout */
.cart-item-top-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Desktop - arrange mobile containers in a row */
@media (min-width: 769px) {
    .cart-item-controls {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-top: 0 !important;
        border-top: none !important;
    }
    
    .mobile-controls-top {
        display: flex;
        align-items: center;
        gap: 20px;
        width: auto !important;
    }
    
    .mobile-controls-bottom {
        display: flex;
        align-items: center;
        gap: 20px;
        width: auto !important;
    }
    
    .item-quantity {
        order: 1;
    }
    
    .item-price {
        order: 2;
        text-align: center !important;
    }
    
    .item-total {
        order: 3;
        text-align: center !important;
    }
    
    .item-actions {
        order: 4;
    }
    
    /* Desktop quantity controls - smaller than mobile */
    .qty-btn {
        min-width: 32px !important;
        height: 32px !important;
        padding: 6px 8px !important;
        font-size: 13px !important;
    }
    
    .qty-input {
        width: 45px !important;
        padding: 6px 4px !important;
        font-size: 13px !important;
    }
    
    .btn-remove {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Desktop item details - takes remaining space in top row */
.cart-item-top-row .item-details {
    flex: 1;
    min-width: 0;
}

/* Mobile - item-details still takes full width */
.item-details {
    flex: 1;
    min-width: 0;
}

.item-details h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.item-category {
    color: #007bff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-description {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.cart-item-size {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #495057;
    display: inline-block;
}

/* Item Quantity Controls */
.item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: white;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    color: #495057;
    transition: all 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.qty-btn:hover {
    background: #007bff;
    color: white;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    border: none;
    padding: 8px 6px;
    text-align: center;
    width: 40px;
    outline: none;
    font-weight: 600;
    background: white;
    font-size: 14px;
}

/* Item Price and Total */
.item-price {
    text-align: center;
    min-width: 80px;
}

.item-price .price {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    display: block;
}

.item-price .unit-price {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}

.item-total {
    text-align: center;
    min-width: 90px;
}

.item-total .total-price {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* Cart Item Price */
.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    text-align: right;
}

/* Item Actions */
.item-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-remove:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220,53,69,0.3);
}

/* Enhanced Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.summary-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.total-row {
    font-size: 20px;
    padding-top: 15px;
    color: #2c3e50;
}

.discount-row {
    color: #28a745;
}

.summary-details hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 20px 0;
}

/* Promo Code */
.promo-code {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.promo-code input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.promo-code input:focus {
    border-color: #007bff;
}

.promo-code button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.promo-code button:hover {
    background: #218838;
}

/* Promo Message */
.promo-message {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.promo-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.promo-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.promo-code button:hover {
    background: #218838;
}

/* Checkout Button */
.btn-checkout {
    display: block;
    width: 100%;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-checkout:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

.btn-checkout i {
    margin-right: 8px;
}

/* Continue Shopping */
.btn-continue-shopping {
    display: block;
    width: 100%;
    background: transparent;
    color: #6c757d;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.btn-continue-shopping:hover {
    border-color: #007bff;
    color: #007bff;
}

.btn-continue-shopping i {
    margin-right: 8px;
}

/* Cart Trust Indicators */
.cart-trust {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cart-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.cart-trust .trust-item:last-child {
    border-bottom: none;
}

.cart-trust .trust-item i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
}

.cart-trust .trust-item span {
    font-size: 14px;
    color: #495057;
}

/* Recommended Products */
.recommended-products {
    padding: 60px 0;
    background: white;
}

.recommended-products h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Enhanced Cart Page Mobile Responsive */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cart-summary {
        position: static;
    }
    
    .cart-items {
        padding: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .cart-item-mobile-row {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .cart-item-top-row .item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-top-row .item-details {
        flex: 1;
    }
    
    .item-details h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .item-category {
        font-size: 11px;
    }
    
    .item-description {
        font-size: 12px;
    }
    
    /* Mobile cart item - override desktop layout */
    .cart-item {
        padding: 15px;
    }
    
    .cart-item-top-row {
        margin-bottom: 12px;
        gap: 15px;
    }
    
    .cart-item-controls {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }
    
    /* Top row - quantity left, remove button right */
    .mobile-controls-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Bottom row - prices */
    .mobile-controls-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .item-quantity {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .qty-btn {
        min-width: 36px;
        height: 36px;
        padding: 8px 10px;
        font-size: 14px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .qty-btn:hover {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }
    
    .qty-input {
        width: 50px;
        padding: 8px 6px;
        font-size: 14px;
        text-align: center;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        background: white;
    }
    
    .item-price {
        text-align: left;
    }
    
    .item-price .price {
        font-size: 15px;
        font-weight: 600;
        display: block;
        color: #495057;
    }
    
    .item-price .unit-price {
        font-size: 12px;
        color: #6c757d;
        margin-top: 2px;
    }
    
    .item-total {
        text-align: right;
    }
    
    .item-total .total-price {
        font-size: 18px;
        font-weight: 700;
        color: #007bff;
    }
    
    .item-actions {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .btn-remove {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 8px;
        background: #dc3545;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-remove:hover {
        background: #c82333;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(220,53,69,0.3);
    }
    
    .summary-card {
        padding: 20px;
    }
    
    .empty-cart {
        padding: 60px 20px;
    }
    
    .empty-cart-icon i {
        font-size: 60px;
    }
    
    .empty-cart h2 {
        font-size: 24px;
    }
    
    .recommended-products h2 {
        font-size: 26px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-success i {
    color: #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-error i {
    color: #dc3545;
}

.notification-info {
    border-left: 4px solid #007bff;
}

.notification-info i {
    color: #007bff;
}

    .notification span {
        font-size: 14px;
        color: #495057;
        font-weight: 500;
    }

/* ===== THANK YOU PAGE STYLES ===== */

/* Thank You Page Header */
.thank-you-page .page-header {
    padding: 40px 0;
}

.thank-you-page .breadcrumb a {
    color: white;
    font-weight: 500;
}

/* Thank You Section */
.thank-you-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

/* Progress Steps - Completed State */
.checkout-progress.completed {
    margin-bottom: 50px;
}

.checkout-progress.completed .progress-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.checkout-progress.completed .progress-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.checkout-progress.completed .progress-step.completed .step-number {
    background: #28a745;
    color: white;
    animation: checkPulse 0.6s ease;
}

.checkout-progress.completed .progress-step.active .step-number {
    background: #007bff;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0,123,255,0.4);
}

@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Success Message */
.success-message {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    margin-bottom: 25px;
}

.success-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(40,167,69,0.3);
}

.success-animation.animate {
    opacity: 1;
    transform: scale(1);
}

.success-message h1 {
    font-size: 42px;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.success-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Thank You Content */
.thank-you-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.confirmation-card, 
.steps-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.confirmation-card.animate,
.steps-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.confirmation-card::before,
.steps-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.card-header h2 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.card-header h2 i {
    color: #007bff;
    font-size: 20px;
}

.order-number-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Order Info */
.order-info {
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
}

.info-row .value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.status.confirmed {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Order Items Section */
.order-items-section {
    margin-bottom: 25px;
}

.order-items-section h3 {
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 20px;
}

.order-item .item-details h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.order-item .item-quantity,
.order-item .item-price {
    margin: 2px 0;
    color: #6c757d;
    font-size: 13px;
}

.order-item .item-total {
    color: #007bff;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

/* Order Summary Section */
.order-summary-section {
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.discount {
    color: #28a745;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    color: #2c3e50;
    padding-top: 15px;
    border-top: 2px solid #f8f9fa;
}

/* Steps Card */
.steps-card h3 {
    color: #2c3e50;
    margin: 0 0 25px 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steps-card h3 i {
    color: #007bff;
    font-size: 18px;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.action-buttons .btn-secondary {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.action-buttons .btn-primary:hover,
.action-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.action-buttons .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.action-buttons .btn-secondary:hover {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

/* Thank You Page Mobile Responsive */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 40px 0 60px;
    }
    
    .success-message h1 {
        font-size: 28px;
    }

    .success-subtitle {
        font-size: 16px;
    }
    
    .success-animation {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .confirmation-card, 
    .steps-card {
        padding: 25px 20px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .order-item {
        grid-template-columns: 50px 1fr auto;
        gap: 12px;
    }
    
    .order-item .item-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 30px 0 50px;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-details h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .cart-item-details p {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .cart-item-size {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .quantity-controls,
    .cart-item-price,
    .remove-item-btn {
        grid-column: 1 / 3;
        margin-top: 10px;
    }
    
    .quantity-controls {
        justify-self: start;
    }
    
    .cart-item-price {
        justify-self: center;
        order: 2;
    }
    
    .remove-item-btn {
        justify-self: end;
        order: 3;
    }
    
    .cart-items {
        padding: 15px;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .promo-code {
        flex-direction: column;
        gap: 8px;
    }
    
    .empty-cart {
        padding: 50px 15px;
    }
    
    .empty-cart-content i {
        font-size: 50px;
    }
    
    .empty-cart-content h2 {
        font-size: 20px;
    }
    
    .empty-cart-content p {
        font-size: 16px;
    }
    
    .recommended-products {
        padding: 40px 0;
    }
    
    .recommended-products h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .products-grid {
                 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
         gap: 15px;
     }
 }

/* ===== CHECKOUT PAGE STYLES ===== */

/* Checkout Section */
.checkout-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(220,53,69,0.1);
}

.error-message i {
    font-size: 18px;
    color: #dc3545;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 150px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step.completed::after,
.progress-step.active::after {
    background: #007bff;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.progress-step.completed .step-number {
    background: #007bff;
    color: white;
}

.progress-step.active .step-number {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.progress-step span {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active span,
.progress-step.completed span {
    color: #007bff;
    font-weight: 600;
}

/* Checkout Content */
.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Checkout Form */
.checkout-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f4;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h2 i {
    color: #007bff;
    width: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Form Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Delivery Options */
.delivery-options h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.delivery-option {
    margin-bottom: 12px;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.delivery-option input[type="radio"]:checked + label {
    border-color: #007bff;
    background: rgba(0,123,255,0.05);
}

.option-info strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 2px;
}

.option-info span {
    color: #6c757d;
    font-size: 14px;
}

.option-price {
    font-weight: 600;
    color: #007bff;
    font-size: 16px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 25px;
}

.payment-option {
    margin-bottom: 12px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #007bff;
    background: rgba(0,123,255,0.05);
}

.payment-option label i {
    font-size: 24px;
    color: #007bff;
    width: 30px;
    text-align: center;
}

.payment-info strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 2px;
}

.payment-info span {
    color: #6c757d;
    font-size: 14px;
}

/* Card Details */
.card-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin: 4px 0 0 0;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    cursor: pointer;
}

.checkbox-group label a {
    color: #007bff;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 120px;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.summary-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* Order Items */
.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

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

.order-item-info {
    flex: 1;
}

.order-item-info h4,
.item-details h4 {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.order-item-info span,
.item-details .unit-price {
    font-size: 12px;
    color: #6c757d;
}

.order-item-quantity {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #495057;
    font-weight: 600;
}

.order-item-price {
    font-weight: 600;
    color: #007bff;
    font-size: 14px;
}

/* Promo Section */
.promo-section {
    padding: 20px 0;
    border-top: 1px solid #f1f3f4;
    margin-bottom: 20px;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.promo-input input:focus {
    border-color: #007bff;
}

.promo-input button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.promo-input button:hover {
    background: #218838;
}

/* Order Totals */
.order-totals {
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.total-row:last-child {
    margin-bottom: 0;
}

.final-total {
    font-size: 18px;
    padding-top: 15px;
    color: #2c3e50;
}

.discount-row {
    color: #28a745;
}

.order-totals hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 15px 0;
}

/* Buttons */
.btn-place-order {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-place-order:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.3);
}

.btn-back-to-cart {
    display: block;
    width: 100%;
    background: transparent;
    color: #6c757d;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.btn-back-to-cart:hover {
    border-color: #007bff;
    color: #007bff;
}

.btn-back-to-cart i {
    margin-right: 8px;
}

/* Checkout Trust */
.checkout-trust {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
}

.trust-badge span {
    font-size: 14px;
    color: #495057;
}

.contact-support h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-support p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.contact-support strong {
    color: #007bff;
}

/* Checkout Page Mobile Responsive */
@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-summary {
        position: static;
        order: 1;
    }
    
    .checkout-form {
        order: 0;
    }
    
    .checkout-progress {
        margin-bottom: 30px;
    }
    
    .progress-step span {
        font-size: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .checkout-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .form-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .delivery-option label,
    .payment-option label {
        padding: 14px 16px;
    }
    
    .card-details {
        padding: 20px;
    }
    
    .summary-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 30px 0 50px;
    }
    
    .checkout-progress {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .progress-step {
        max-width: 80px;
    }
    
    .progress-step span {
        font-size: 11px;
        text-align: center;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .checkout-form {
        padding: 20px 15px;
    }
    
    .form-section h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .delivery-option label,
    .payment-option label {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-option label {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .payment-option label i {
        font-size: 20px;
    }
    
    .option-price {
        align-self: flex-end;
    }
    
    .card-details {
        padding: 15px;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .order-item {
        padding: 12px 0;
    }
    
    .order-item-image {
        width: 45px;
        height: 45px;
    }
    
    .promo-input {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-place-order {
        padding: 16px 20px;
        font-size: 15px;
    }
    
         .trust-badges {
         gap: 12px;
     }
 }

/* ===== THANK YOU PAGE STYLES ===== */

/* Thank You Section */
.thank-you-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* Success Message */
.success-message {
    margin-bottom: 50px;
}

.success-icon {
    margin-bottom: 25px;
}

.success-icon i {
    font-size: 80px;
    color: #28a745;
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-message h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Thank You Content */
.thank-you-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Order Confirmation */
.order-confirmation {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.confirmation-card {
    padding: 0;
}

.card-header {
    background: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h2 i {
    color: #007bff;
}

.order-number {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
}

/* Order Info */
.order-info {
    padding: 30px;
    border-bottom: 1px solid #f1f3f4;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    font-weight: 500;
    color: #6c757d;
}

.info-row .value {
    font-weight: 600;
    color: #2c3e50;
}

.status.confirmed {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Order Items Section */
.order-items-section {
    padding: 30px;
    border-bottom: 1px solid #f1f3f4;
}

.order-items-section h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.item-details span {
    font-size: 14px;
    color: #6c757d;
}

.item-quantity {
    background: #e9ecef;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
}

/* Order Summary Section */
.order-summary-section {
    padding: 30px;
    background: #f8f9fa;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.discount {
    color: #28a745;
}

.summary-row.total {
    font-size: 20px;
    padding-top: 15px;
    color: #2c3e50;
}

.order-summary-section hr {
    border: none;
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

/* Customer Info Section */
.customer-info-section {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-column h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.address-info,
.contact-info {
    color: #495057;
    line-height: 1.6;
}

.address-info p,
.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #2c3e50;
}

/* Next Steps */
.next-steps {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.steps-card {
    padding: 40px;
}

.steps-card h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.steps-card h2 i {
    color: #28a745;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 24px;
}

.step-content h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 8px;
}

.delivery-time {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Thank You Actions */
.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-continue-shopping,
.btn-contact,
.btn-print {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-continue-shopping:hover,
.btn-contact:hover,
.btn-print:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Recommendations Section */
.recommendations-section {
    padding: 80px 0;
    background: white;
}

.recommendations-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.recommendations-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Support Section */
.support-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.support-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.support-info p {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-method i {
    font-size: 24px;
    color: #007bff;
    width: 40px;
    text-align: center;
}

.contact-method strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 2px;
}

.contact-method span {
    color: #6c757d;
    font-size: 14px;
}

.support-image {
    text-align: center;
}

.support-image i {
    font-size: 120px;
    color: #e9ecef;
}

/* Thank You Page Mobile Responsive */
@media (max-width: 768px) {
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .next-steps {
        order: -1;
    }
    
    .success-message h1 {
        font-size: 32px;
    }
    
    .success-subtitle {
        font-size: 16px;
    }
    
    .success-icon i {
        font-size: 60px;
        padding: 15px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px;
    }
    
    .order-info,
    .order-items-section,
    .order-summary-section {
        padding: 25px;
    }
    
    .customer-info-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .steps-card {
        padding: 25px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .support-image i {
        font-size: 80px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-continue-shopping,
    .btn-contact,
    .btn-print {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .recommendations-section h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-section {
        padding: 40px 0 30px;
    }
    
    .success-message {
        margin-bottom: 30px;
    }
    
    .success-message h1 {
        font-size: 26px;
    }
    
    .success-subtitle {
        font-size: 15px;
    }
    
    .success-icon i {
        font-size: 50px;
        padding: 12px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-header h2 {
        font-size: 20px;
    }
    
    .order-number {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .order-info,
    .order-items-section,
    .order-summary-section,
    .customer-info-section {
        padding: 20px;
    }
    
    .order-item-summary {
        gap: 12px;
        padding: 12px;
    }
    
    .item-image {
        width: 50px;
        height: 50px;
    }
    
    .item-details h4 {
        font-size: 14px;
    }
    
    .steps-card {
        padding: 20px;
    }
    
    .steps-card h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .step-item {
        gap: 12px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .contact-method {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-method i {
        font-size: 20px;
        width: 35px;
    }
    
    .support-info h2 {
        font-size: 24px;
    }
    
    .support-info p {
        font-size: 16px;
    }
    
    .recommendations-section {
        padding: 50px 0;
    }
    
    .recommendations-section h2 {
        font-size: 24px;
    }
    
    .recommendations-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .support-section {
        padding: 40px 0;
    }
    
    .support-image i {
        font-size: 60px;
    }
}

/* ===== THANK YOU PAGE IMPROVEMENTS ===== */

/* White background for thank-you content */
.thank-you-section {
    background: white !important;
}

/* All progress steps green - completed state */
.checkout-progress.completed .progress-step .step-number {
    background: #28a745 !important;
    color: white !important;
}

.checkout-progress.completed .progress-step.active .step-number {
    background: #28a745 !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(40,167,69,0.4) !important;
}

/* Green progress lines and dark green text */
.checkout-progress.completed .progress-step:not(:last-child)::after {
    background: #28a745 !important;
}

.checkout-progress.completed .progress-step span {
    color: #1e7e34 !important;
    font-weight: 600;
}

/* Progress shine effect - similar to counter shine */
.progress-step.progress-shine .step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: progressShine 1.5s ease-in-out;
    border-radius: 50%;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-step .step-number {
    position: relative;
    overflow: hidden;
}

/* Improved order items layout */
.order-items-section {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.order-items-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 20px;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.item-quantity {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.item-price {
    margin: 0;
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.item-total {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #007bff;
}

/* Hide success animation icon */
.success-icon {
    display: none;
}

/* Improved success message layout */
.success-message {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

/* Center containers for desktop, left align text content */
.thank-you-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.order-confirmation {
    width: 100%;
    max-width: 800px;
}

.next-steps {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.next-steps .steps-card {
    width: 100%;
}

.action-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Left align text content within containers */
.order-confirmation .info-row {
    text-align: left;
}

.order-confirmation .card-header h2 {
    text-align: left;
}

.order-items-section h3 {
    text-align: left;
}

.order-summary-section {
    text-align: left;
}

.next-steps .step-content h4,
.next-steps .step-content p {
    text-align: left;
}

/* Mobile improvements for order items */
@media (max-width: 768px) {
    .order-item {
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
    
    .item-image {
        width: 50px;
        height: 50px;
        grid-row: 1 / 3;
    }
    
    .item-details {
        grid-column: 2;
        grid-row: 1;
    }
    
    .item-total {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        margin-top: 5px;
        padding-top: 5px;
        border-top: 1px solid #e9ecef;
    }
}

/* Shop pagination styles */
.products-section .pagination-wrapper {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.products-section .pagination-nav .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.products-section .pagination .page-item {
    display: inline-block;
}

.products-section .pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    color: #333;
    background: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.products-section .pagination .page-link:hover {
    border-color: #cbd3da;
    background: #f8f9fa;
}

.products-section .pagination .page-item.active .page-link {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,123,255,0.25);
}

.products-section .pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

.products-section .pagination-info {
    color: #6c757d;
}

@media (max-width: 768px) {
    .products-section .pagination-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Global breadcrumb styles */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center; /* centrirano */
    gap: 6px;
    font-size: 14px;
    color: #e9ecef; /* veoma svetlo siva (skoro bela) */
}

.breadcrumb a {
    color: #ffffff; /* beo link */
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #f8f9fa; /* blago svetlija nijansa bele */
    text-decoration: underline;
}

.breadcrumb span {
    color: #e9ecef; /* aktivni segment: veoma svetlo sivo */
}

/* Product page breadcrumb - dark colors for white background */
.product-detail .breadcrumb {
    color: #6c757d; /* siva */
}

.product-detail .breadcrumb a {
    color: #343a40; /* tamno siva/crna */
}

.product-detail .breadcrumb a:hover {
    color: #495057; /* srednje siva na hover */
}

.product-detail .breadcrumb span {
    color: #6c757d; /* siva za aktivni segment */
}

/* Ako koristimo "/" kao separator unutar HTML-a, ostaje default. 
   Ako želimo pseudo-separator: .breadcrumb a + span::before { content: "/"; margin: 0 6px; color: #dee2e6; } */

/* Shop layout improvements */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Desktop - 4-5 products per row */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* Tablet - 3 products per row */
@media (min-width: 769px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Mobile - 2 products per row */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Search and filters styling */
.search-filters {
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 14px;
    background: transparent;
    color: #495057;
}

.search-input-wrapper input::placeholder {
    color: #adb5bd;
}

.clear-search {
    padding: 8px 10px;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
}

.clear-search:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.search-filter-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
    display: none;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.search-filter-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .search-filter-btn {
        display: flex;
    }
}

/* Category badges */
.category-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    padding: 0 20px;
    cursor: grab;
    user-select: none;
}

.category-badge {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-badge:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #adb5bd;
}

.category-badge.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.category-badge.active:hover {
    background: #0056b3;
    border-color: #0056b3;
}

@media (max-width: 768px) {
    .category-badges {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-badges::-webkit-scrollbar {
        display: none;
    }
    
    .category-badges:active {
        cursor: grabbing;
    }
    
    .category-badge {
        flex-shrink: 0;
        font-size: 12px;
        padding: 6px 12px;
        pointer-events: auto;
    }
}

.filters-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.filter-select:hover {
    border-color: #cbd3da;
}

/* Hide standalone mobile filter toggle - now integrated in search */
.mobile-filter-toggle {
    display: none;
}

.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-filter-popup {
    position: fixed;
    bottom: 0;
    left: 10px;
    right: 10px;
    background: white;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
}

.mobile-filter-popup.active {
    transform: translateY(0);
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-filter-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.mobile-filter-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-filter-close:hover {
    background: #f5f5f5;
    color: #333;
}

.mobile-filter-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
}

.mobile-filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    color: #495057;
}

.mobile-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-filter-apply, .mobile-filter-reset {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-apply {
    background: #007bff;
    color: white;
}

.mobile-filter-apply:hover {
    background: #0056b3;
}

.mobile-filter-reset {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.mobile-filter-reset:hover {
    background: #e9ecef;
    color: #495057;
}

@media (max-width: 768px) {
    .filters-row {
        display: none;
    }
    
    .search-input-wrapper {
        max-width: 100%;
        margin-bottom: 15px;
        border-width: 1px;
    }
    
    .search-input-wrapper input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .clear-search {
        padding: 6px 8px;
        font-size: 14px;
    }
    
    .search-filter-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }
}

/* Product card improvements */
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 12px 12px 6px 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    flex-grow: 1;
}

.product-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card h3 a:hover {
    color: #007bff;
}

.product-card p {
    padding: 0 12px;
    margin: 0 0 8px 0;
    font-size: 11px;
    color: #6c757d;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    padding: 0 12px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.product-card .btn-add-cart {
    width: calc(100% - 24px);
    margin: 0 12px 12px 12px;
    padding: 8px;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: white;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-card .btn-add-cart:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.product-card .btn-add-cart:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}