/* ===== فونت ===== */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

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

body {
    font-family: 'Vazirmatn', 'IRANSans', Tahoma, Arial, sans-serif;
    background: #F9F6F0;
    color: #1A3B5C;
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
header {
    background: rgba(249, 246, 240, 0.92);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(26, 59, 92, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

.logo img {
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

nav ul li a {
    color: #1A3B5C;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s;
}

nav ul li a:hover {
    color: #D4AF37;
    background: rgba(26, 59, 92, 0.05);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #1A3B5C;
    color: #1A3B5C;
    font-size: 22px;
    padding: 5px 14px;
    border-radius: 8px;
    cursor: pointer;
}

/* ===== منوی زبان ===== */
.language-wrapper {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    background: transparent;
    border: 2px solid #1A3B5C;
    color: #1A3B5C;
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Vazirmatn', sans-serif;
}

.lang-toggle:hover {
    background: #1A3B5C;
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 160px;
    display: none;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #E8E3D8;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: none;
    text-align: right;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Vazirmatn', sans-serif;
    color: #1A3B5C;
    transition: all 0.3s;
}

.lang-dropdown button:hover {
    background: #F0EDE8;
    color: #D4AF37;
}

/* ===== صفحه‌بندی ===== */
.page-header {
    background: linear-gradient(135deg, #1A3B5C, #2A5B7C);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: rotateGlow 30s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== اسلایدر ===== */
.hero-slider {
    width: 100%;
    height: 500px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(249, 246, 240, 0.92);
    backdrop-filter: blur(10px);
    color: #1A3B5C;
    padding: 15px 25px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(26, 59, 92, 0.12);
}

.slide-text h2 {
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.slide-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
    color: #D4AF37 !important;
    background: rgba(255,255,255,0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #D4AF37 !important;
}

/* ===== تیترها ===== */
h2 {
    font-size: 2.2rem;
    color: #1A3B5C;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(to left, #D4AF37, #4A90D9);
    margin: 12px auto 0;
    border-radius: 10px;
}

/* ===== معرفی ===== */
.intro {
    background: #F9F6F0;
    padding: 50px 0;
}

.intro p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
    color: #4A6A8A;
    padding: 0 15px;
    line-height: 2.2;
}

/* ===== مزایا ===== */
.features {
    background: #F0EDE8;
}

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

.feature-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.06);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(26, 59, 92, 0.12);
    border-bottom: 3px solid #D4AF37;
}

.feature-card .icon {
    font-size: 2.8rem;
    color: #4A90D9;
    margin-bottom: 15px;
    display: block;
}

/* ===== محصولات ===== */
.products-preview {
    background: #F9F6F0;
}

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

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.06);
    transition: all 0.4s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(26, 59, 92, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #1A3B5C;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

/* ===== بلاگ ===== */
.blog-slider {
    background: #F0EDE8;
    padding: 50px 0;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.06);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .blog-info {
    padding: 20px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6A8AAA;
}

.blog-card .blog-meta .category {
    color: #D4AF37;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #1A3B5C;
}

/* ===== دکمه‌ها ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-primary {
    background: #1A3B5C;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 59, 92, 0.25);
}

.btn-primary:hover {
    background: #D4AF37;
    color: #1A3B5C;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.85rem;
}

.btn-light {
    background: #fff;
    color: #1A3B5C;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-light:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #1A3B5C, #2A5B7C);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    color: #fff;
}

.cta h2::after {
    background: #D4AF37;
}

/* ===== درباره ما ===== */
.about-content {
    padding: 60px 0;
    background: #F9F6F0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-text h2 {
    color: #1A3B5C;
    text-align: right;
    font-size: 1.5rem;
    margin-top: 20px;
}

.about-text h2::after {
    margin: 5px 0 0 0;
    width: 50px;
}

.about-text p {
    color: #4A6A8A;
    line-height: 2.2;
    margin-bottom: 15px;
    text-align: justify;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    padding: 8px 0;
    color: #4A6A8A;
}

.about-text ul li i {
    color: #D4AF37;
    margin-left: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.1);
    margin-bottom: 15px;
}

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

.stat-item {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(26, 59, 92, 0.06);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A3B5C;
    display: block;
}

.stat-item p {
    color: #6A8AAA;
    margin-top: 5px;
}

/* ===== تماس ===== */
.contact-content {
    padding: 60px 0;
    background: #F9F6F0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    text-align: right;
    font-size: 1.6rem;
}

.contact-info h2::after,
.contact-form h2::after {
    margin: 5px 0 0 0;
    width: 50px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8rem;
    color: #4A90D9;
    min-width: 40px;
}

.info-item h4 {
    color: #1A3B5C;
    margin-bottom: 3px;
}

.info-item p {
    color: #4A6A8A;
    margin: 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1A3B5C;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E8E3D8;
    border-radius: 12px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90D9;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #E8F5E9;
    color: #1A3B5C;
}

.map-placeholder {
    background: #E8E3D8;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    color: #4A6A8A;
    margin-top: 40px;
}

.map-placeholder i {
    font-size: 3rem;
    color: #4A90D9;
    display: block;
    margin-bottom: 15px;
}

/* ===== محصولات (صفحه) ===== */
.products-content {
    padding: 60px 0;
    background: #F9F6F0;
}

.filter-section {
    text-align: center;
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 28px;
    border: 2px solid #1A3B5C;
    background: transparent;
    color: #1A3B5C;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1A3B5C;
    color: #fff;
}

/* ===== سوالات ===== */
.faq-content {
    padding: 60px 0;
    background: #F9F6F0;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(26, 59, 92, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    cursor: pointer;
}

.faq-question:hover {
    background: #F0EDE8;
}

.faq-question .faq-icon {
    font-size: 1.5rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.05rem;
    color: #1A3B5C;
    margin: 0;
}

.faq-question .faq-toggle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    color: #4A6A8A;
    line-height: 2;
    border-top: 1px solid #F0EDE8;
}

.faq-contact {
    background: linear-gradient(135deg, #1A3B5C, #2A5B7C);
    color: #fff;
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.faq-contact h3 {
    color: #fff;
    font-size: 1.6rem;
}

/* ===== قوانین ===== */
.terms-content {
    padding: 60px 0;
    background: #F9F6F0;
}

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

.terms-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.06);
    border-right: 4px solid #D4AF37;
}

.terms-card h3 {
    color: #1A3B5C;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.terms-card p {
    color: #4A6A8A;
    line-height: 2;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card ul li {
    color: #4A6A8A;
    padding: 5px 0;
    padding-right: 25px;
    position: relative;
}

.terms-card ul li::before {
    content: '✓';
    color: #D4AF37;
    font-weight: 700;
    position: absolute;
    right: 0;
}

.terms-date {
    text-align: left;
    color: #999;
    font-size: 0.85rem;
    margin-top: 20px;
    grid-column: 1 / -1;
}

/* ===== بلاگ ===== */
.blog-content {
    padding: 60px 0;
    background: #F9F6F0;
}

.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.06);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.blog-text .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #6A8AAA;
}

.blog-text .blog-meta .category {
    color: #D4AF37;
    font-weight: 600;
}

.blog-text h2 {
    font-size: 1.5rem;
    text-align: right;
    color: #1A3B5C;
    margin: 10px 0;
}

.blog-text h2::after {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-number {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #E8E3D8;
    border-radius: 10px;
    color: #555;
    cursor: pointer;
}

.page-number.active {
    background: #1A3B5C;
    color: #fff;
    border-color: #1A3B5C;
}

/* ===== جزئیات محصول ===== */
.product-detail {
    padding: 60px 0;
    background: #F9F6F0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(26, 59, 92, 0.1);
}

.product-detail-info h2 {
    color: #1A3B5C;
    font-size: 2rem;
    text-align: right;
    margin-top: 0;
}

.product-detail-info h2::after {
    margin: 5px 0 0 0;
    width: 50px;
}

.product-detail-info p {
    color: #4A6A8A;
    line-height: 2;
    margin: 20px 0;
}

.product-detail-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-detail-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #E8E3D8;
    color: #4A6A8A;
}

.btn-secondary {
    background: transparent;
    color: #1A3B5C;
    border: 2px solid #1A3B5C;
}

.btn-secondary:hover {
    background: #1A3B5C;
    color: #fff;
}

/* ===== فوتر ===== */
footer {
    background: #0D2137;
    color: #C0D0E0;
    padding: 50px 0 20px;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #D4AF37;
    margin-top: 8px;
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #A0B8D0;
}

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

.footer-col ul li a {
    color: #A0B8D0;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #D4AF37;
}

.footer-col i {
    margin-left: 8px;
    color: #D4AF37;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 1.4rem;
    background: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== انیمیشن ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== چت‌بات ===== */
#chatToggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1A3B5C;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(26, 59, 92, 0.3);
}

#chatToggle:hover {
    background: #D4AF37;
    color: #1A3B5C;
}

#chatBox {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    max-width: 90vw;
    height: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: #1A3B5C;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-input {
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #E8E3D8;
    border-radius: 10px;
    font-family: inherit;
}

.chat-input button,
.chat-message button {
    padding: 10px 18px;
    background: #1A3B5C;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin: 10px 0;
    max-height: 200px;
}

.chat-message-user {
    background: #1A3B5C;
    color: #fff;
    padding: 8px 14px;
    border-radius: 15px 15px 0 15px;
    margin: 5px 0 5px auto;
    max-width: 80%;
}

.chat-message-bot {
    background: #F0EDE8;
    color: #1A3B5C;
    padding: 8px 14px;
    border-radius: 15px 15px 15px 0;
    margin: 5px auto 5px 0;
    max-width: 80%;
}

.chat-message {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.chat-message textarea {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #E8E3D8;
    border-radius: 10px;
    resize: none;
    height: 45px;
    font-family: inherit;
}

@media (max-width: 480px) {
    #chatBox {
        width: 95vw;
        right: 2.5vw;
        bottom: 10px;
        height: 400px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        background: rgba(249, 246, 240, 0.98);
        border-radius: 16px;
        padding: 15px 0;
        box-shadow: 0 8px 30px rgba(26, 59, 92, 0.1);
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px;
    }

    .language-wrapper {
        order: 2;
    }
    .lang-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
    .lang-dropdown {
        right: -10px;
        min-width: 140px;
    }

    .hero-slider {
        height: 280px;
    }
    .swiper-slide img {
        height: 280px;
    }
    .slide-text {
        bottom: 20px;
        right: 15px;
        left: 15px;
        padding: 12px 18px;
        max-width: none;
    }
    .slide-text h2 {
        font-size: 1rem;
    }
    .slide-text p {
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .feature-card {
        padding: 20px 15px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .product-card {
        padding: 15px;
    }
    .product-card img {
        height: 130px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    .blog-post {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        margin: 8px auto 0;
    }
    .social-icons {
        justify-content: center;
    }
    .terms-box {
        grid-template-columns: 1fr;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-info h2 {
        font-size: 1.5rem;
    }
}