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

:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(20, 14%, 4.1%);
    --muted: hsl(60, 4.8%, 95.9%);
    --muted-foreground: hsl(25, 5.3%, 44.7%);
    --border: hsl(20, 5.9%, 90%);
    --color-white: hsl(20, 5.9%, 90%);
    
    /* Brand Colors */
    --brand-premium: hsl(28, 100%, 15%);
    --brand-premium-foreground: hsl(0, 0%, 98%);
    --brand-leather: hsl(30, 35%, 35%);
    --brand-leather-light: hsl(35, 25%, 65%);
    --brand-green: hsl(160, 60%, 25%);
    --brand-green-light: hsl(160, 40%, 45%);
    --promo-bg: hsl(160, 60%, 25%);
    --promo-foreground: hsl(0, 0%, 98%);
    --primary: hsl(28, 100%, 15%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, system-ui, sans-serif;
    
    /* Shadows */
    --shadow-subtle: 0 1px 3px 0 hsl(0 0% 0% / 0.1);
    --shadow-premium: 0 25px 50px -12px hsl(0 0% 0% / 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-premium {
    background-color: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
    box-shadow: var(--shadow-subtle);
}

.btn-premium:hover {
    background-color: var(--brand-green-light);
    border-color: var(--brand-green-light);
    box-shadow: var(--shadow-premium);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--brand-premium);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    min-width: 160px;
}

/* Icon Button */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    background-color: var(--muted);
}

.cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: var(--foreground);
    color: var(--background);
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile utilities */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Promotional Banner */
.promo-bar {
    background-color: var(--promo-bg);
    color: var(--promo-foreground);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-message {
    font-weight: 500;
}

.promo-actions {
    display: flex;
    gap: 0.5rem;
}

.promo-link {
    color: var(--promo-foreground);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

.promo-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Header */
.header {
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
    position: sticky;
    top: 0;
    z-index: 50;
}

.contact-bar {
    border-bottom: 1px solid var(--border);
    padding: 0.25rem 0;
    background-color: var(--muted);
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--muted-foreground);
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.main-nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--foreground);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--muted-foreground);
}

.logo {
    flex: 1;
    text-align: center;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--foreground);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-left {
        display: none;
    }
    
    .nav-right .search-btn,
    .nav-right .user-btn {
        display: none;
    }
    
    .logo {
        flex: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/hero-shoes.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.dot.active {
    background-color: white;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Collections */
.collections {
    background-color: var(--background);
}

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

.collection-card {
    cursor: pointer;
    transition: var(--transition);
}

.collection-image {
    aspect-ratio: 1;
    background-color: var(--muted);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

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

.collection-info {
    text-align: center;
}

.collection-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.collection-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Featured Products */
.featured-products {
    background-color: rgba(60, 4.8%, 95.9%, 0.3);
}

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

.product-card {
    background-color: var(--background);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-premium);
}

.product-image {
    aspect-ratio: 1;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background-color: var(--brand-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-badge.bestseller {
    background-color: var(--brand-leather);
}

.product-badge.new {
    background-color: var(--brand-premium);
}

.product-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    opacity: 0;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sale-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-green);
}

.original-price {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.product-info .btn {
    width: 100%;
}

/* Brand Story */
.brand-story {
    background-color: var(--background);
}

.brand-story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .brand-story-content {
        grid-template-columns: 1fr 1fr;
    }
}

.brand-story-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.story-paragraphs {
    margin-bottom: 2rem;
}

.story-paragraphs p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.brand-story-image {
    aspect-ratio: 1;
    background-color: var(--muted);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.brand-story-image p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Testimonials */
.testimonials {
    background-color: var(--background);
}

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

.testimonial-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-premium);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--foreground);
}

.author-name {
    font-weight: 500;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-top: 4rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-score {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background-color: var(--brand-premium);
    color: var(--brand-premium-foreground);
}

.newsletter-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--background);
    transition: var(--transition);
    border-radius: 0.375rem;
}

.social-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-links {
        grid-column: 2 / -1;
        display: contents;
    }
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--background);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--background);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul, .footer-links ol {
    margin: 0;
}

.our-collections img {
    border-radius: 15px;
}

.contact-info span a {
    text-decoration: none;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    padding: 0;
}

/* Shop Detail */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.brand {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.nav {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--foreground);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Product Gallery */
.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.25rem;
    background-color: var(--muted);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.25rem;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: var(--border);
}

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px -4px rgba(34, 34, 34, 0.1);
}

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

/* Product Details */
.details-section {
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

.product-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

/* Selection Groups */
.selection-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selection-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Color Selection */
.color-options {
    display: flex;
    gap: 0.75rem;
}

.color-btn {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--brand-green);
}

.check-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.color-btn.active .check-icon {
    display: block;
}

/* Size Selection */
.size-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.size-btn {
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    background-color: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: var(--primary);
}

.size-btn.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.info-label {
    color: var(--muted-foreground);
}

.info-value {
    color: var(--foreground);
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 6rem 0;
    background-color: var(--muted);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .craftsmanship-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    text-align: center;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.newsletter-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    background-color: var(--background);
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .size-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .nav {
        gap: 1rem;
    }
}

#add-to-cart {
    margin-top: 20px;
}

.size-btn.active {
    border-color: var(--brand-premium);
    background-color: var(--brand-premium);
    color: var(--color-white);
}

.cart-dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  width: 220px;
  display: none;
  z-index: 100;
}
.cart-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-dropdown li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-dropdown .cart-summary {
  margin-top: 8px;
  text-align: right;
  font-weight: 600;
}

.size-btn, .length-btn {
    margin: 5px;
    padding: 10px 15px;
    cursor: pointer;
}
.selected { background-color: #333; color: #fff; }
.disabled { opacity: 0.5; cursor: not-allowed; }
.product-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.gallery-section { flex: 1; }
.details-section { flex: 1; }
.thumbnail-grid { display: flex; gap: 10px; margin-top: 10px; }
.thumbnail img { width: 60px; height: 60px; object-fit: cover; }
.entry-content {
    margin: 0px;
}

#comments {
    display: none;
}
.woocommerce img, .woocommerce-page img {
    height: 100%;
}
.thumbnail img {
    width: 100% !important;
    height: 100% !important; 
    object-fit: cover;
}
#product-quantity {
    width: 80px;           /* Reduce width */
    padding: 5px 8px;      /* Smaller padding */
    font-size: 14px;       /* Slightly smaller text */
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}
.brand a, .brand a:hover {
    color: #333;
    text-decoration: none;
}
.main-content {
    padding: 0px;
}
.custom-cart-section {
    margin-top: 20px;
}
.woocommerce a.remove {
    line-height: 18px;
    width: 24px;
}
.our-collections img {
    border-radius: 0px;
    width: 100%;
}
.product-image {
    aspect-ratio: 0;
}
.hero {
    position: relative;
    min-height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px;
}