/* สไตล์ทั่วไป */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600&display=swap');

:root {
    --primary: #ff3333;
    --primary-light: #ff6666;
    --primary-dark: #cc0000;
    --white: #ffffff;
    --gray-light: #f8f9fa;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    padding: 8px 0;
    color: var(--white);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.social-link {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--white) !important;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(255, 102, 102, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.brand-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary), #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    gap: 15px;
}

.phone-number .nav-link {
    color: var(--primary-dark) !important;
    font-weight: 600;
    font-size: 1.15rem;
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.phone-number .nav-link:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    border-radius: 5px;
    border: 2px solid transparent;
    background-color: transparent;
}

.nav-link i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white) !important;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 102, 0.2);
}

.nav-link:hover i {
    transform: scale(1.1);
    color: var(--white) !important;
}

.nav-link:hover {
    background-color: var(--primary);
    color: var(--white) !important;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        padding: 0 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        padding: 0 15px;
        line-height: 1.4;
    }
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(24, 119, 242, 0.1);
    border-radius: 10px;
    color: #1877f2;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
    background: rgba(24, 119, 242, 0.15);
}

.guarantee-item i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.guarantee-item:hover i {
    transform: scale(1.1);
}

.guarantee-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .product-guarantee {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .guarantee-item {
        padding: 12px 15px;
    }
    
    .guarantee-item i {
        font-size: 1.3rem;
    }
    
    .guarantee-item span {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .col-lg-3 {
        width: 50%;
        padding: 8px;
    }

    .product-card {
        margin-bottom: 0;
        border-radius: 12px;
    }

    .product-image {
        border-radius: 12px 12px 0 0;
        padding-top: 65%;
    }

    .product-image img {
        height: 180px;
    }

    .product-content {
        padding: 12px;
    }

    .product-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .product-details p {
        font-size: 0.85rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .product-price {
        font-size: 0.9rem;
        margin: 8px 0;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .btn-block {
        margin-top: 8px;
    }

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

@media (max-width: 576px) {
    .col-lg-3 {
        padding: 6px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        border-radius: 10px 10px 0 0;
        padding-top: 60%;
    }

    .product-image img {
        height: 140px;
    }

    .product-content {
        padding: 10px;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .product-details p {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .product-price {
        font-size: 0.85rem;
        margin: 6px 0;
    }

    .price-amount {
        font-size: 1rem;
    }

    .btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .btn-block {
        margin-top: 6px;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 102, 102, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: linear-gradient(45deg, var(--gray-light) 0%, #ffffff 100%);
    flex: 0 0 auto;
    border-radius: 15px 15px 0 0;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-details {
    color: #666;
}

.product-details i {
    color: var(--primary);
    margin-right: 8px;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

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

.btn-block {
    width: 100%;
    margin-top: 15px;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-details {
    color: #666;
}

.product-details i {
    color: var(--primary);
    margin-right: 8px;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

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

.btn-block {
    width: 100%;
    margin-top: 15px;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.product-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.product-info {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Admin Panel */
.admin-sidebar {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}

.admin-sidebar .nav-link {
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--primary);
    color: var(--white) !important;
}

.admin-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(255, 102, 102, 0.1);
}

/* Forms */
.form-control {
    border: 1px solid rgba(255, 102, 102, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 102, 0.1);
}

/* Tables */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background: var(--primary-light);
    color: var(--white);
    font-weight: 500;
    border: none;
}

.table td {
    vertical-align: middle;
}

/* Product Detail */
.product-detail {
    background-color: var(--white);
    padding: 40px 0;
}

.product-image-large {
    position: relative;
    background-color: var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-large:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.product-image-large:hover .zoom-overlay i {
    transform: scale(1);
}

#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-body {
    position: relative;
    padding: 0;
}

#imageModal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 1050;
    transition: all 0.3s ease;
}

#imageModal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

#imageModal img {
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.product-meta {
    margin-bottom: 30px;
}

.meta-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.meta-item i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 4px;
}

.meta-item .label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--dark);
}

.meta-item .value {
    color: var(--gray-dark);
}

.steam-link {
    color: #1b2838;
    text-decoration: none;
    transition: color 0.3s ease;
}

.steam-link:hover {
    color: var(--primary);
}

.product-price-section {
    margin: 25px 0;
}

.price-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount .currency {
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
}

.price-amount .amount {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions .btn {
    flex: 1;
    padding: 15px 30px;
    font-size: 1.2rem;
    background: #1877f2;
    border-color: #1877f2;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.product-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}



.product-notice {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
}

.product-notice h5 {
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-notice h5 i {
    color: var(--primary);
}

.product-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-notice li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--gray-dark);
}

.product-notice li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 3px solid var(--primary);
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 25px;
    color: var(--white);
    margin-right: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}
.footer {
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer h5 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.footer p {
    color: #666;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    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);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.product-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.feature-item {
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.navbar-brand:hover .logo-img {
    animation: pulse 1s infinite;
}

.nav-link:hover i {
    animation: pulse 0.5s;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.product-card {
    transition: all 0.3s ease;
}

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

.product-image img {
    transition: all 0.5s ease;
}

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

.product-overlay {
    opacity: 0;
    transition: all 0.3s ease;
}

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

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    animation: pulse 0.5s;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(255, 51, 51, 0.2);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.4rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .feature-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin: 0 0 0.2rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 0.5rem 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .feature-item {
        padding: 0.4rem;
        gap: 0.5rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon i {
        font-size: 0.9rem;
    }

    .feature-content h3 {
        font-size: 0.9rem;
        margin: 0 0 0.1rem;
    }

    .feature-content p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-right: 20px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-card {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}
