* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

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

.header {
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 60px;
}

.logo a {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-decoration: none;
    color: #333;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    padding: 10px 0;
}

.nav a:hover {
    opacity: 0.6;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.currency-selector select {
    border: none;
    background: none;
    font-weight: 500;
    cursor: pointer;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s;
}

.header-link:hover {
    color: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 0;
}

.search-btn:hover,
.cart-btn:hover {
    opacity: 0.6;
}

.search-btn svg,
.cart-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #333;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    visibility: hidden;
}

.cart-count.show {
    display: flex !important;
    visibility: visible !important;
}

.hero {
    height: 60vh;
    background: white
        url("https://www.yoox.com/images/yoox80/banners/6824_2_SandalsEspadrillas_Main_M.jpg?634485886869569819#width=1380&height=637");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    background: white;
    padding: 40px 50px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

.cta-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

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

.categories-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

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

.category-card {
    position: relative;
    height: 400px;
    background: #f8f8f8;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.category-overlay h4 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}

.filters-section {
    background: #f8f8f8;
    padding: 30px 0;
}

.filters {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filters select,
.filters input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    font-size: 14px;
    min-width: 150px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 120px;
}

#applyFilters {
    background: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
}

.elegant-divider {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.divider-line {
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.divider-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #d4d4d8 20%,
        #71717a 50%,
        #d4d4d8 80%,
        transparent 100%
    );
    transform: translateY(-50%);
}

.divider-icon {
    display: inline-block;
    background: white;
    padding: 0 20px;
    font-size: 18px;
    color: #71717a;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 2px;
}

.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    margin-bottom: 20px;
    background: #f8f8f8;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.product-info {
    text-align: left;
    padding: 0 5px;
}

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

.product-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    cursor: pointer;
}

.product-info h4:hover {
    color: #666;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.product-details {
    margin-bottom: 20px;
}

.product-details span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

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

.add-to-bag-btn {
    flex: 1;
    background: #000;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.add-to-bag-btn:hover {
    background: #333;
}

.quick-view-btn {
    flex: 1;
    background: white;
    color: #000;
    border: 2px solid #000;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.quick-view-btn:hover {
    background: #000;
    color: white;
}

.footer {
    background: #000;
    color: white;
    padding: 60px 0 40px;
}

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

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-section a:hover {
    color: white;
}

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

.social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.category-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #333;
}

.category-header p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.breadcrumb {
    padding: 20px 0;
    background: #f8f8f8;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: #333;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .product-image {
        height: 280px;
    }

    .product-info h4 {
        font-size: 16px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-actions {
        flex-direction: column;
    }

    .add-to-bag-btn,
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
}

.pagination-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 44px;
    text-align: center;
    text-decoration: none;
}

.pagination-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.pagination-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

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

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: #666;
}

@media (max-width: 768px) {
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 36px;
    }

    .pagination-wrapper {
        gap: 0.25rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.modal h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

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

.contact-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.contact-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 5px 0;
}

.size-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.size-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.size-tab.active {
    color: #333;
    border-bottom-color: #333;
}

.size-content {
    display: none;
}

.size-content.active {
    display: block;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.size-table th,
.size-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.size-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.size-table td {
    color: #666;
}

.shipping-methods {
    margin-bottom: 30px;
}

.shipping-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-method:hover {
    border-color: #333;
}

.shipping-method.selected {
    border-color: #333;
    background-color: #f8f9fa;
}

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

.delivery-time {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.method-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.shipping-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.shipping-details h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.shipping-details h3:first-child {
    margin-top: 0;
}

.shipping-details ul {
    list-style: none;
    padding: 0;
}

.shipping-details li {
    color: #666;
    margin: 8px 0;
    padding-left: 15px;
    position: relative;
}

.shipping-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

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

.return-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.return-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.return-item p {
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .contact-info,
    .returns-info {
        grid-template-columns: 1fr;
    }

    .shipping-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .size-tabs {
        flex-wrap: wrap;
    }

    .size-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.brand-info-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.brand-header h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
}

.brand-description {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.brand-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.brand-features {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.feature-column h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.feature-column h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-column h3 a:hover {
    color: #666;
    text-decoration: underline;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.feature-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.brand-heritage {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.brand-heritage p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.brand-links {
    font-size: 13px;
    color: #666;
}

.brand-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.brand-links a:hover {
    color: #000;
}

.brand-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.icon-item {
    text-align: center;
    color: inherit;
    text-decoration: none;
    display: block;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.icon-item .icon {
    margin-bottom: 20px;
    color: #333;
}

.icon-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 0.5px;
}

.icon-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .brand-info-section {
        padding: 60px 0;
    }

    .brand-header h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-icons {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-description,
    .brand-heritage {
        margin-bottom: 40px;
    }
}

/* Superbalist Homepage Styles */
.superbalist-homepage {
    background: #ffffff;
    padding: 0;
}

.category-grid-superbalist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.category-item {
    position: relative;
    overflow: hidden;
}

.category-item a {
    display: block;
    text-decoration: none;
}

.category-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.category-item:hover img {
    transform: scale(1.05);
}

.large-banner {
    margin: 10px 0;
    overflow: hidden;
}

.large-banner a {
    display: block;
}

.large-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.large-banner:hover img {
    transform: scale(1.02);
}

.first-buy-banner {
    margin: 10px 0;
    overflow: hidden;
}

.first-buy-banner a {
    display: block;
}

.first-buy-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.first-buy-banner:hover img {
    transform: scale(1.02);
}

.brands-section-superbalist {
    margin: 30px 0;
}

.brands-section-superbalist h4 {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #333;
}

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

.brand-item {
    position: relative;
    overflow: hidden;
}

.brand-item a {
    display: block;
    text-decoration: none;
}

.brand-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive for Superbalist */
@media (max-width: 768px) {
    .category-grid-superbalist {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .brands-grid-superbalist {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .category-grid-superbalist {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .brands-grid-superbalist {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Discount Pricing Styles */
.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.discounted-price {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 2px;
}

/* Product card pricing */
.product-card .product-pricing {
    margin-top: 8px;
}

.product-card .original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.product-card .discounted-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.product-card .discount-badge {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
}

.product-card .product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.product-card .product-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

/* Related products pricing */
.related-product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.related-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.related-discounted-price {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/* Product page pricing */
#productPrice .pricing-container {
    align-items: flex-start;
}

#productPrice .original-price {
    font-size: 16px;
    margin-bottom: 4px;
}

#productPrice .discounted-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

#productPrice .discount-badge {
    font-size: 14px;
    padding: 4px 8px;
    margin-top: 8px;
}
