@font-face {
    font-family: "VazirmatnLocal";
    src: local("Vazirmatn"), local("Vazir"), local("Tahoma");
}

:root {
    --primary: #d71920;
    --primary-dark: #a90f17;
    --primary-soft: #fff0f1;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #dddddd;
    --gray-500: #777777;
    --gray-700: #444444;
    --gray-900: #1f1f1f;
    --success: #0f9d58;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    --radius: 18px;
    --transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "VazirmatnLocal", Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.9;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
}

.main-nav {
    background: var(--white);
}

.nav-wrapper {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 18px;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 20px rgba(215, 25, 32, 0.22);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 13px;
    color: var(--gray-700);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-soft);
    color: var(--primary);
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 4px;
}

/* Common */

.section-badge {
    display: inline-flex;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-title h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--gray-900);
}

.section-title p {
    margin: 0;
    color: var(--gray-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(215, 25, 32, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}

.btn-outline:hover {
    background: var(--primary-soft);
}

/* Image placeholder */

.image-placeholder {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(215,25,32,0.08), rgba(255,255,255,0.8)),
        repeating-linear-gradient(
            45deg,
            #fff,
            #fff 12px,
            #f7f7f7 12px,
            #f7f7f7 24px
        );
    border: 1px dashed rgba(215, 25, 32, 0.35);
}



.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero */

.hero-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(215,25,32,0.09), transparent 35%),
        linear-gradient(180deg, #ffffff, #fff8f8);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.35;
    color: var(--gray-900);
}

.hero-content p {
    margin: 0 0 28px;
    font-size: 17px;
    color: var(--gray-700);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    min-height: 410px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Features */

.features-section,
.product-categories-section,
.gallery-preview-section {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(215, 25, 32, 0.25);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin: 0 0 8px;
    color: var(--gray-900);
}

.feature-card p {
    margin: 0;
    color: var(--gray-500);
}

/* Quick Links */

.quick-links-section {
    padding: 35px 0 70px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.quick-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px;
    transition: var(--transition);
}

.quick-card:hover {
    background: var(--primary-soft);
    border-color: rgba(215, 25, 32, 0.28);
    transform: translateY(-4px);
}

.quick-image {
    height: 135px;
    border-radius: 16px;
}

.quick-card h3 {
    margin: 0 0 8px;
    color: var(--primary-dark);
}

.quick-card p {
    margin: 0;
    color: var(--gray-600);
}

/* About */

.about-section {
    padding: 70px 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.about-content h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 4vw, 36px);
}

.about-content p {
    color: var(--gray-700);
    text-align: justify;
}

.goals-box {
    background: var(--white);
    border-right: 5px solid var(--primary);
    border-radius: 16px;
    padding: 20px 22px;
    margin-top: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.goals-box h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
}

.goals-box ul {
    margin: 0;
    padding-right: 20px;
}

.about-side {
    display: grid;
    gap: 18px;
}

.year-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 15px 35px rgba(215, 25, 32, 0.25);
}

.year-card span {
    display: block;
    font-size: 15px;
    opacity: 0.9;
}

.year-card strong {
    display: block;
    font-size: 52px;
    line-height: 1.2;
}

.about-image {
    height: 330px;
    border-radius: 22px;
}

/* Categories */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 25, 32, 0.3);
    box-shadow: var(--shadow);
}

.category-image {
    height: 170px;
    border-radius: 14px;
    margin-bottom: 14px;
}

.category-card h3 {
    margin: 0 0 6px;
    color: var(--primary-dark);
}

.category-card p {
    margin: 0 0 5px;
    color: var(--gray-600);
}

.category-card span {
    color: var(--gray-500);
    font-size: 13px;
}

/* Products Info */

.products-info-section {
    padding: 70px 0;
    background: var(--gray-50);
}

.info-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.info-card.reverse {
    grid-template-columns: 1.25fr 0.75fr;
}

.info-card.reverse .info-image {
    order: 2;
}

.info-image {
    height: 310px;
    border-radius: 20px;
}

.info-content h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 24px;
}

.info-content p {
    color: var(--gray-700);
    text-align: justify;
}

.sub-title {
    color: var(--primary) !important;
    font-weight: 700;
}

/* Related */

.related-section {
    padding: 70px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.related-box h2 {
    margin-top: 0;
    color: var(--primary-dark);
}

.link-list,
.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li,
.footer-links li {
    margin-bottom: 9px;
}

.link-list a,
.footer-links a,
.footer-contact a {
    color: var(--gray-700);
    transition: var(--transition);
}

.link-list a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.mini-article {
    border-top: 1px solid var(--gray-200);
    padding-top: 14px;
    margin-top: 14px;
}

.mini-article h3 {
    margin: 0 0 6px;
    color: var(--gray-900);
}

.mini-article p {
    margin: 0;
    color: var(--gray-500);
}

/* Gallery */

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
}

.gallery-item {
    height: 120px;
    border-radius: 14px;
}

/* Newsletter */

.newsletter-section {
    padding: 40px 0 70px;
}

.newsletter-box {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 28px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(215, 25, 32, 0.28);
}

.newsletter-box .section-badge {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.newsletter-box h2,
.newsletter-box p {
    margin: 0 0 8px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 8px;
    border-radius: 16px;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 14px;
    font-family: inherit;
}

.newsletter-form button {
    border: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 12px;
    font-family: inherit;
    cursor: pointer;
    font-weight: 700;
}

/* Video */

.video-section {
    padding: 0 0 80px;
}

.video-wrapper {
    position: relative;
    background: var(--gray-900);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper video {
    width: 100%;
    max-height: 560px;
    display: block;
    background: #111;
}

.play-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
}

/* Footer */

.site-footer {
    background: #151515;
    color: #f4f4f4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 0.8fr;
    gap: 28px;
    padding: 55px 0;
}

.footer-column h3 {
    margin: 0 0 16px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    background: var(--primary);
    border-radius: 999px;
}

.footer-column p,
.footer-contact li {
    color: #d0d0d0;
}

.footer-contact li {
    margin-bottom: 10px;
}

.instagram-text a {
    color: var(--primary);
    font-weight: 700;
}

.footer-search {
    margin-bottom: 14px;
}

.footer-search input {
    width: 100%;
    height: 42px;
    border: 1px solid #333;
    background: #222;
    color: var(--white);
    border-radius: 12px;
    padding: 0 12px;
    font-family: inherit;
}

.footer-search input::placeholder {
    color: #999;
}

.footer-links a {
    color: #d0d0d0;
}

.footer-bottom {
    border-top: 1px solid #2b2b2b;
}

.footer-bottom-content {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 13px;
}

.top-link {
    color: var(--white);
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
}

/* Responsive */

@media (max-width: 1024px) {
    .features-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .top-bar-content {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow);
        border-radius: 18px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    #menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .hero-grid,
    .about-grid,
    .related-grid,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 45px 0;
    }

    .hero-image {
        min-height: 300px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .info-card.reverse {
        grid-template-columns: 1fr;
    }

    .info-card.reverse .info-image {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .container {
        width: min(100% - 22px, 1180px);
    }

    .nav-wrapper {
        min-height: 68px;
    }

    .logo {
        font-size: 15px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .features-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        grid-template-columns: 1fr;
    }

    .quick-image {
        height: 190px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 44px;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 150px;
    }

    .footer-bottom-content {
        flex-direction: column;
        padding: 16px 0;
        text-align: center;
    }
}


.page-hero {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.92), rgba(160, 10, 20, 0.92)),
        url("../images/mojavez/2.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.page-hero .section-badge {
    background: #fff;
    color: #d71920;
}

.page-hero h1 {
    margin: 18px 0 16px;
    font-size: 42px;
    font-weight: 800;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.92);
}

.licenses-section {
    padding: 80px 0;
    background: #fff;
}

.licenses-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.license-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.license-item:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 16px 36px rgba(215, 25, 32, 0.14);
}

.license-item img {
    width: 100%;
    height: 290px;
    object-fit: contain;
    display: block;
    background: #fafafa;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .licenses-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 55px 0;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .licenses-section {
        padding: 50px 0;
    }

    .licenses-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .license-item {
        min-height: 250px;
        padding: 10px;
    }

    .license-item img {
        height: 230px;
    }
}

@media (max-width: 480px) {
    .licenses-gallery {
        grid-template-columns: 1fr;
    }

    .license-item {
        min-height: auto;
    }

    .license-item img {
        height: auto;
        max-height: 420px;
    }
}


/* =========================
   Products Page
========================= */

.products-hero {
    background:
        linear-gradient(135deg, rgba(184, 28, 35, 0.92), rgba(120, 12, 18, 0.9)),
        url("../images/products-hero.jpg") center/cover no-repeat;
    color: #fff;
}

.products-section {
    padding: 70px 0;
    background: #fff;
}

.products-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.products-sidebar {
    background: #fff;
    border: 1px solid rgba(184, 28, 35, 0.12);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 95px;
}

.products-sidebar h3 {
    margin-bottom: 18px;
    color: #b81c23;
    font-size: 1.15rem;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-tab {
    width: 100%;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 15px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: right;
    transition: all 0.25s ease;
    font-family: inherit;
    color: #333;
}

.product-tab:hover,
.product-tab.active {
    background: #b81c23;
    color: #fff;
    border-color: #b81c23;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 28, 35, 0.22);
}

.product-tab-number {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(184, 28, 35, 0.1);
    color: #b81c23;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.product-tab.active .product-tab-number,
.product-tab:hover .product-tab-number {
    background: #fff;
    color: #b81c23;
}

.product-tab-title {
    font-size: 0.94rem;
    line-height: 1.7;
}

.product-details-box {
    min-width: 0;
}

.product-detail-card {
    background: #fff;
    border-radius: 26px;
    border: 1px solid rgba(184, 28, 35, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.product-detail-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #fff, #fff5f5);
    border-bottom: 1px solid rgba(184, 28, 35, 0.1);
}

.product-detail-header h2 {
    color: #b81c23;
    margin: 10px 0;
    font-size: 2rem;
}

.product-detail-header p {
    color: #555;
    line-height: 2;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 28px;
    padding: 30px;
}

.product-images {
    display: grid;
    gap: 16px;
}

.product-image-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: 14px;
    display: block;
}

.product-info h3,
.product-specs h3,
.usage-box h3 {
    color: #b81c23;
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding: 10px 34px 10px 0;
    margin-bottom: 8px;
    background: #fffafa;
    border: 1px solid rgba(184, 28, 35, 0.08);
    border-radius: 14px;
    line-height: 1.9;
    color: #444;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    right: 12px;
    top: 10px;
    color: #b81c23;
    font-weight: 800;
}

.usage-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b81c23, #8f1218);
    color: #fff;
}

.usage-box h3 {
    color: #fff;
}

.usage-box p {
    line-height: 2;
    margin: 0;
}

.product-specs {
    padding: 0 30px 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
}

.product-specs th,
.product-specs td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    text-align: right;
    line-height: 1.8;
}

.product-specs th {
    background: #fff5f5;
    color: #b81c23;
    width: 45%;
    font-weight: 700;
}

.product-specs td {
    color: #333;
    direction: ltr;
    text-align: left;
}

.product-specs tr:last-child th,
.product-specs tr:last-child td {
    border-bottom: none;
}


/* Responsive Products */
@media (max-width: 1100px) {
    .products-layout {
        grid-template-columns: 270px 1fr;
        gap: 22px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .products-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 45px 0;
    }

    .products-list {
        grid-template-columns: 1fr;
    }

    .product-detail-header,
    .product-detail-grid,
    .product-specs {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-images {
        grid-template-columns: 1fr;
    }

    .product-image-card img {
        height: 230px;
    }

    .product-specs th,
    .product-specs td {
        padding: 12px;
        font-size: 0.9rem;
    }
}
