/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #16a085;
    --light-color: #e8f5e9;
    --dark-color: #1b5e20;
    --text-color: #333;
    --light-text: #fff;
    --gray-color: #f9f9f9;
    --border-color: #c8e6c9;
    --shadow: 0 8px 30px rgba(46, 204, 113, 0.15);
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #16a085;
    --light-color: #1a1a1a;
    --dark-color: #0d0d0d;
    --text-color: #e0e0e0;
    --light-text: #ffffff;
    --gray-color: #2d2d2d;
    --border-color: #3d3d3d;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --bg-color: #121212;
    --card-bg: rgba(30, 30, 30, 0.95);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-color);
    direction: rtl;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 16px rgba(46, 204, 113, 0.2);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.btn:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.25);
}

.btn-small {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.15);
}

.btn-small:hover {
    background: var(--accent-color);
    transform: scale(1.08);
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: row-reverse;
}

.logo-wrapper {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    max-height: 40px;
    width: auto;
    display: block;
}

.footer-logo .logo-wrapper {
    margin-bottom: 15px;
    width: 140px;
    height: 70px;
}

.footer-logo .logo-wrapper img {
    max-height: 50px;
}

/* Dark mode adjustments */
[data-theme="dark"] .logo-wrapper {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-wrapper {
        width: 100px;
        height: 50px;
    }
    
    .logo-wrapper img {
        max-height: 35px;
    }
    
    .footer-logo .logo-wrapper {
        width: 120px;
        height: 60px;
    }
    
    .footer-logo .logo-wrapper img {
        max-height: 45px;
    }
}

nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    gap: 30px;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-menu li {
    position: relative;
    transition: transform 0.3s ease;
}

.main-menu li:hover {
    transform: translateY(-2px);
}

.main-menu a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 20px;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.main-menu a:hover {
    color: var(--accent-color);
    background: rgba(46, 204, 113, 0.1);
}

.main-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.main-menu a:hover::before {
    opacity: 0.1;
}

.lang-switch {
    background: var(--primary-color);
    color: var(--light-text) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 90px;
    position: relative;
    height: calc(100vh - 90px);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    background-color: #000;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('images/tree.jpg') center/cover no-repeat;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero .swiper-slide-active {
    opacity: 1;
}

.hero .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    padding: 18px 45px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-content .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.hero-content .btn:hover::before {
    opacity: 1;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Slider Navigation */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .swiper-button-next:after,
.hero .swiper-button-prev:after {
    font-size: 1.5rem;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero .swiper-pagination-bullet-active::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-content .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}

.about-text {
    flex: 1.2;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    transform: scale(1);
    transition: transform 0.5s ease;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-image:hover {
    transform: scale(1.05);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
}

.product-image {
    padding: 20px;
    background: linear-gradient(135deg, var(--light-color), var(--bg-color));
}

.product-image img {
    border-radius: 15px;
    max-height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s;
    margin: 0 auto;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    background: var(--card-bg);
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 20px;
    min-height: 80px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

.social-media {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
}

.whatsapp-contact {
    margin: 20px 0;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    background: #128C7E;
}

.whatsapp-btn i {
    font-size: 1.2em;
}

/* Dark mode adjustments */
[data-theme="dark"] .social-icon {
    background: var(--accent-color);
}

[data-theme="dark"] .social-icon:hover {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media {
        justify-content: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 80px 0 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 -10px 30px rgba(46, 204, 113, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-newsletter {
    flex: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.footer-logo img {
    height: 85px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 10px #2e8b57cc);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-links h3, .footer-newsletter h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    color: var(--accent-color);
}

.footer-links h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-newsletter p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Cairo', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== ANIMATIONS AND EFFECTS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content h1, .hero-content p, .hero-content .btn {
    animation: fadeIn 1s ease-out forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-content .btn {
    animation-delay: 0.6s;
    opacity: 0;
}

.product-card:hover .btn-small {
    animation: pulse 1s infinite;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .about-content, .contact-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .footer-newsletter {
        margin-top: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 90px;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-150%);
        opacity: 0;
        backdrop-filter: blur(10px);
        border-bottom: 3px solid var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-menu li {
        margin: 10px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info p {
        min-height: auto;
    }

    .swiper-slide {
        width: 300px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-info p {
        font-size: 1rem;
        min-height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===== MAP CONTAINER ===== */
.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

/* ===== DARK MODE TOGGLE ===== */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle i {
    color: var(--light-text);
    font-size: 1.5rem;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Product Details Page Styles */
.product-details {
    padding: 120px 0 60px;
    background-color: var(--bg-color);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-image {
    flex: 0 0 300px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.product-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.product-content h2:first-child {
    margin-top: 0;
}

.product-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.components-grid, .benefits-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.component-card, .benefit-card, .feature-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover, .benefit-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.component-card h3, .benefit-card h3, .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.component-card ul {
    list-style: none;
    padding: 0;
}

.component-card ul li {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.component-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p, .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.conclusion {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .product-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .product-info h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-details {
        padding: 100px 0 40px;
    }

    .product-content {
        padding: 30px;
    }

    .components-grid, .benefits-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}