/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content h1 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-content h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.shop-page-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-messages {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-alert {
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
}

.shop-alert.success {
    background: rgba(223, 124, 96, 0.08);
    color: #df7c60;
}

.shop-alert.error {
    background: rgba(255, 0, 0, 0.08);
    color: red;
}

.shop-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.shop-filter-link {
    text-decoration: none;
    border: 1px solid rgba(223, 124, 96, 0.4);
    color: #000000;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.shop-filter-link:hover,
.shop-filter-link.active {
    background: #df7c60;
    color: #fff;
    border-color: #df7c60;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.shop-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(240, 59, 10, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.shop-card:focus-visible {
    outline: 2px solid #df7c60;
    outline-offset: 4px;
}

.shop-card-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.shop-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.shop-card-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #df7c60;
}

.shop-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.shop-card-price {
    font-weight: 700;
    color: #000000;
}

.shop-card-stock {
    font-size: 0.9rem;
}

.shop-card-stock.in-stock {
    color: #2e7d32;
}

.shop-card-stock.out-of-stock {
    color: #b71c1c;
}

.shop-card-snippet {
    color: #555;
    font-size: 0.95rem;
    flex: 1;
}

.shop-card-view {
    align-self: flex-start;
    border: none;
    background: #000000;
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shop-card-view:hover {
    background: #df7c60;
}

.search-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.search-input-inline {
    flex: 1;
    min-width: 220px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
}

.search-filter-row .shop-card-view {
    border-radius: 999px;
}

.search-filter-row .shop-card-view.reset {
    background: #f5f5f5;
    color: #000000;
}

.shop-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff7f4;
    border-radius: 24px;
    margin-top: 20px;
}

.shop-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2000;
}

.shop-modal-overlay.open {
    display: flex;
}

.modal-open {
    overflow: hidden;
}

.shop-modal {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.shop-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000000;
}

.shop-modal-image {
    flex: 1 1 320px;
}

.shop-modal-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.shop-modal-details {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shop-modal-category {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #df7c60;
    font-weight: 600;
}

.shop-modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.shop-modal-stock {
    font-weight: 600;
    color: #2e7d32;
}

.shop-modal-stock.out-of-stock {
    color: #b71c1c;
}

.shop-modal-section h4 {
    margin-bottom: 6px;
    color: #000000;
}

.shop-modal-section p {
    color: #555;
    line-height: 1.5;
}

.shop-modal-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.shop-modal-cart input[type="number"] {
    width: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.shop-modal-cart button {
    border: none;
    background: #df7c60;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shop-modal-cart button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.shop-modal-share .share-buttons {
    display: flex;
    gap: 12px;
}

.shop-modal-share .share-buttons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: background 0.3s ease, color 0.3s ease;
}

.shop-modal-share .share-buttons a:hover {
    background: #df7c60;
    color: #fff;
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pagination-nav {
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.pagination-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.pagination-pages {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-page {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(40, 60, 27, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.pagination-page.active {
    background: #df7c60;
    color: #fff;
    border-color: #df7c60;
}

/* Glow Essential Section - Carousel */
.glow-essential-section.carousel-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.glow-essential-section.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(223, 124, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slides {
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #df7c60;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    z-index: 10;
    position: relative;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #df7c60;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background: #df7c60;
    transform: scale(1.2);
}

.glow-essential-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.glow-essential-content {
    flex: 1;
    max-width: 600px;
}

.glow-essential-content h2 {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.glow-essential-content p {
    font-size: 1.4em;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.shop-now-button {
    background-color: #df7c60;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(240, 59, 10, 0.3);
}

.shop-now-button:hover {
    background-color: red;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 124, 96, 0.4);
}

.shop-now-button i {
    transition: transform 0.3s ease;
}

.shop-now-button:hover i {
    transform: translateX(5px);
}

.glow-essential-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.glow-essential-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .glow-essential-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .glow-essential-content {
        max-width: 100%;
    }
    
    .glow-essential-content h2 {
        font-size: 2.8em;
    }
    
    .glow-essential-content p {
        font-size: 1.2em;
    }
    
    .glow-essential-image {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .product-row.row-five {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 30px 0;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .main-content h2 {
        font-size: 24px;
    }
    
    .main-content p {
        font-size: 14px;
    }
    
    .glow-essential-section {
        padding: 60px 0;
    }
    
    .glow-essential-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .glow-essential-content h2 {
        font-size: 2.2em;
        margin-bottom: 20px;
    }
    
    .glow-essential-content p {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .shop-now-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .shop-modal {
        padding: 20px;
    }

    .shop-modal-cart {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-modal-cart input[type="number"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .glow-essential-section {
        padding: 40px 0;
    }
    
    .glow-essential-container {
        padding: 0 15px;
    }
    
    .glow-essential-content h2 {
        font-size: 1.8em;
    }
    
    .glow-essential-content p {
        font-size: 1em;
    }
    
    .shop-now-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .shop-category-filter {
        gap: 8px;
    }

    .shop-card-media img {
        height: 200px;
    }

    .shop-modal {
        padding: 18px;
    }

    .shop-modal-close {
        top: 10px;
        right: 10px;
    }
}


.glow-essential-alt {
    background: linear-gradient(135deg, #fff8f5 0%, #ffe9e0 100%);
}

.glow-marquee {
    background: linear-gradient(90deg, #fbd6c8, #f8e4da, #fde5d2);
    padding: 0 30px;
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee-slide 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #5c3520;
    white-space: nowrap;
}

.marquee-item i {
    font-size: 1.2rem;
}

@keyframes marquee-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header p {
    color: #df7c60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #000000;
}

.category-showcase,
.product-section,
.testimonial-section,
.social-grid,
.newsletter-section {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.category-card {
    text-align: center;
    border: 1px solid #f5d4c3;
    border-radius: 22px;
    padding: 20px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
    width: 100%;
    border-radius: 22px 22px 22px 0;
    margin-bottom: 15px;
}

.category-card h4 {
    font-size: 1.1rem;
    color: #5c3520;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card-link:hover .category-card {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-section {
    background: #fff;
}

.product-section:nth-of-type(even) {
    background: #fff7f4;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.product-row.row-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-row.row-five .product-card {
    height: 100%;
}

.new-in-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: stretch;
}

.new-in-featured,
.new-in-list .product-card {
    height: 100%;
}

.new-in-featured {
    border-color: rgba(40, 60, 27, 0.35);
}

.new-in-featured img {
    height: 800px;
}

.new-in-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    grid-auto-rows: 1fr;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(240, 59, 10, 0.15);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000000;
}

.product-card .badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.product-info p {
    color: #6d6d6d;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #df7c60;
}

.product-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.product-card-icon:hover {
    transform: scale(1.05);
}

.product-card-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.product-card-icon.loading {
    opacity: 0.6;
}

.product-card-icon i {
    pointer-events: none;
}

.view-more {
    display: block;
    margin: 35px auto 0;
 line-height:60px; 
  width:200px;
    border-radius: 30px;
    border: none;
    background: #df7c60;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    
}

.testimonial-section {
    background: #f6fef6;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f6fef6 0%, transparent 15%, transparent 85%, #f6fef6 100%);
    pointer-events: none;
}

.testimonial-card {
    min-width: 260px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    animation: testimonial-slide 20s linear infinite;
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #000000;
}

.testimonial-card span {
    color: #df7c60;
    font-weight: 600;
}

@keyframes testimonial-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1200px); }
}

.social-grid .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.grid-tile {
    display: block;
    overflow: hidden;
    position: relative;
}

.grid-tile::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(240, 59, 10, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.grid-tile:hover::after {
    opacity: 1;
}

.grid-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-section {
    padding: 80px 30px;
}

.newsletter-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(120deg, #000000, #df7c60);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.newsletter-content p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-content h3 {
    font-size: 2rem;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 280px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 30px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #f8c16a;
    color: #000000;
    font-weight: 700;
    cursor: pointer;
}

.product-detail-section {
    padding: 40px 0 80px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 40px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-detail-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #000000;
}

.product-detail-meta {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #df7c60;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-detail-price {
    font-size: 2rem;
    color: #df7c60;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-detail-stock {
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-stock.in-stock {
    color: #1f7a3b;
}

.product-detail-stock.out-of-stock {
    color: #d93025;
}

.product-detail-description,
.product-detail-info-block {
    margin-bottom: 25px;
}

.product-detail-description h3,
.product-detail-info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #000000;
}

.product-detail-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-detail-form input[type="number"] {
    width: 80px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.detail-add-to-cart {
    background-color: #df7c60;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.detail-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.detail-add-to-cart:not(:disabled):hover {
    transform: translateY(-2px);
}

.wishlist-inline-form {
    margin-bottom: 25px;
}

.wishlist-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(240, 59, 10, 0.4);
    background: #fff;
    color: #df7c60;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-icon-btn:hover {
    background: rgba(240, 59, 10, 0.08);
}

.wishlist-icon-btn i {
    color: #df7c60;
}

.product-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.share-buttons a:hover {
    background: #df7c60;
}

.cart-page h1 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.empty-cart-card {
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cart-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.cart-item-details {
    display: flex;
    gap: 15px;
    flex: 1;
    align-items: center;
}

.cart-item-details img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
}

.cart-price {
    color: #df7c60;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity input {
    width: 70px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.cart-row-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-line-total {
    font-weight: 700;
    color: #000000;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #d93025;
    cursor: pointer;
    font-weight: 600;
}

.cart-summary {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.wishlist-stock {
    font-weight: 600;
    margin-bottom: 10px;
}

.wishlist-stock.in-stock {
    color: #2e7d32;
}

.wishlist-stock.out-of-stock {
    color: #b71c1c;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.wishlist-actions form {
    display: inline-block;
}

.wishlist-add-btn,
.wishlist-remove-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.wishlist-add-btn {
    background: #000000;
    color: #fff;
}

.wishlist-remove-btn {
    background: #f5f5f5;
    color: #d93025;
}

@media (max-width: 992px) {
    .product-row,
    .category-grid,
    .social-grid .image-grid {
        padding: 0 20px;
    }

    .product-row.row-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .new-in-layout {
        grid-template-columns: 1fr;
    }

    .new-in-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .glow-marquee {
        padding: 0 15px;
    }

    .marquee-item {
        font-size: 0.9rem;
    }

    .product-row,
    .category-grid,
    .social-grid .image-grid {
        padding: 0 15px;
    }

    .product-row.row-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-in-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: 220px;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .product-row.row-five {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Checkout Section Styles */
.checkout-section {
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.checkout-btn {
    background: #df7c60;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 59, 10, 0.3);
}

.checkout-btn:hover {
    background: #d02a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 59, 10, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Account Page Styles */
.account-page {
    max-width: 1000px;
}

.account-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(240, 59, 10, 0.1);
    padding-bottom: 15px;
}

.account-nav-link {
    padding: 12px 24px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: transparent;
}

.account-nav-link:hover {
    color: #df7c60;
    background: rgba(240, 59, 10, 0.05);
}

.account-nav-link.active {
    color: #df7c60;
    background: rgba(240, 59, 10, 0.1);
}

.account-alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
}

.account-alert-success {
    background: rgba(40, 60, 27, 0.1);
    color: #000000;
    border-left: 4px solid #000000;
}

.account-alert-error {
    background: rgba(240, 59, 10, 0.1);
    color: #df7c60;
    border-left: 4px solid #df7c60;
}

.account-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.account-section {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(240, 59, 10, 0.1);
}

.account-section h2 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(240, 59, 10, 0.1);
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-form label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.account-form input[type="text"]:focus,
.account-form input[type="email"]:focus,
.account-form input[type="password"]:focus {
    outline: none;
    border-color: #df7c60;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(240, 59, 10, 0.1);
}

.account-button {
    background: #df7c60;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(240, 59, 10, 0.2);
}

.account-button:hover {
    background: #d02a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 59, 10, 0.3);
}

/* Orders Page Styles */
.empty-orders-card {
    padding: 60px 40px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(240, 59, 10, 0.1);
}

.empty-orders-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.order-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(240, 59, 10, 0.1);
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(240, 59, 10, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.order-header h3 {
    color: #000000;
    font-size: 1.3rem;
    margin: 0;
}

.order-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.order-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #f57c00;
}

.status-badge.status-processing {
    background: rgba(33, 150, 243, 0.2);
    color: #1976d2;
}

.status-badge.status-shipped {
    background: rgba(76, 175, 80, 0.2);
    color: #388e3c;
}

.status-badge.status-delivered {
    background: rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.status-badge.status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #c62828;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-details p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

.order-details strong {
    color: #000000;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-page {
    max-width: 1200px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form-section,
.contact-info-section {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(240, 59, 10, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(240, 59, 10, 0.1);
}

.contact-alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-alert-success {
    background: rgba(40, 60, 27, 0.1);
    color: #000000;
    border-left: 4px solid #000000;
}

.contact-alert-error {
    background: rgba(240, 59, 10, 0.1);
    color: #df7c60;
    border-left: 4px solid #df7c60;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #df7c60;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(240, 59, 10, 0.1);
}

.contact-button {
    background: #df7c60;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(240, 59, 10, 0.2);
    align-self: flex-start;
}

.contact-button:hover {
    background: #d02a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 59, 10, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: #df7c60;
    margin-top: 5px;
    min-width: 30px;
}

.contact-detail-item h3 {
    color: #000000;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.contact-detail-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-map {
    margin-top: 30px;
}

.contact-map h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-map iframe {
    border-radius: 15px;
    border: 2px solid rgba(240, 59, 10, 0.1);
    width: 100%;
}

/* About Page Styles */
.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(240, 59, 10, 0.1);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.05rem;
}

.about-content p:first-child {
    font-size: 1.15rem;
    color: #000000;
    font-weight: 600;
}

/* Responsive Styles for Account, Contact, and Orders Pages */
@media (max-width: 992px) {
    .account-sections {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .account-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .account-nav-link {
        padding: 10px 20px;
        text-align: center;
    }
    
    .account-section {
        padding: 25px 20px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 25px 20px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkout-section {
        padding: 20px;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .about-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .account-section h2,
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.4rem;
    }
    
    .order-card {
        padding: 20px 15px;
    }
    
    .order-header h3 {
        font-size: 1.1rem;
    }
    
    .status-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .contact-detail-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-detail-item i {
        font-size: 1.3rem;
    }
}