* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f1419;
}

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

header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f2937;
    position: fixed;
    width: 100%;
    z-index: 90;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 90;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}


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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle {
    display: none;
}

.overlay {
    display: none;
}

.overlay.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 95;
}

/* Desktop navigation styling */
nav {
    display: block;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0;
}

nav ul li a:hover {
    color: #60a5fa;
}

.hero {
    height: auto;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 160px 0 100px;
    margin-top: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #ffffff;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa 0%, #818cf8 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    display: block;
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

section {
    padding: 80px 0;
    background-color: #0f1419;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #ffffff;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa 0%, #818cf8 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.about-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.highlight-text {
    font-weight: 600;
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.highlight-text:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img.main-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-image img.main-image:hover {
    transform: scale(1.02);
}

.profile-image-round {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.product-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 22px;
}

.product-info p {
    color: #cbd5e1;
    margin-bottom: 15px;
}

.height-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3b82f6;
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

/* Social Links Section */
.social-links {
    text-align: center;
    padding: 20px 0 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.values-section {
    background: #111827;
}

#contact {
    background: #111827;
}

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

.current-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.velzani-logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

.velzani-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.wp-logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

.wp-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.velzani-card {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
}

.velzani-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.velzani-card p:first-of-type {
    margin-bottom: 15px;
}

.velzani-card p:nth-of-type(2) {
    margin-bottom: 20px;
}

.wordpress-card {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
}

.wordpress-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.wordpress-card p:first-of-type {
    margin-bottom: 15px;
}

.wordpress-card p:nth-of-type(2) {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .current-work-grid {
        grid-template-columns: 1fr;
    }
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.experience-card {
    padding: 30px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

.experience-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.experience-card:hover .experience-icon-container {
    transform: scale(1.05);
}

.experience-icon-container .material-icons {
    font-size: 28px;
}

.experience-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.experience-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

.icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.value-card:hover .icon-container {
    transform: scale(1.05);
}

.icon-container .material-icons {
    font-size: 32px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

/* Simplified footer */
footer {
    background: #0a0f14;
    border-top: 1px solid #1f2937;
    color: #94a3b8;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: #64748b;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

/* Features section with side-by-side layout */
.features-section {
    padding: 80px 0;
    background: #0f1419;
}

.features-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.features-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.features-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.features-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-container {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon-container {
    transform: scale(1.05);
}

.feature-icon-container .material-icons {
    font-size: 28px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-description {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-flex-container {
        flex-direction: column;
    }
    
    .features-image-container {
        margin: 0 auto 40px;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon-container {
        margin-bottom: 15px;
    }
}

/* Updated buy section */
.buy-section-wrapper {
    background: #111827;
    padding: 100px 0;
}

.wholesale-content.centered {
    max-width: 1000px;
    margin: 0 auto;
}

.wholesale-text {
    width: 100%;
    text-align: center;
}

.wholesale-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.wholesale-text p {
    margin-bottom: 30px;
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wholesale-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-wholesale-container {
    display: none;
}

.contact-wholesale {
    margin-top: 50px;
    padding: 40px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wholesale p {
    margin-bottom: 0;
    font-size: 18px;
    color: #cbd5e1;
}

.email-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.email-link:hover {
    color: #93c5fd;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: #60a5fa;
    transition: width 0.3s;
}

.email-link:hover::after {
    width: 100%;
}

/* Animation effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Material Icons Styling */
.material-icons {
    font-size: 24px;
    line-height: 1;
}

/* Mobile header with hamburger menu */
@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        z-index: 110;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        position: relative;
    }
    
    .logo {
        z-index: 90;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #ffffff;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        top: 0px;
    }
    
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3) {
        top: 9px;
    }
    
    .mobile-menu-toggle span:nth-child(4) {
        top: 18px;
    }
    
    .mobile-menu-toggle.open span:nth-child(1),
    .mobile-menu-toggle.open span:nth-child(4) {
        top: 9px;
        width: 0%;
        left: 50%;
    }
    
    .mobile-menu-toggle.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #111827;
        border-left: 1px solid #374151;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 80px 30px 30px;
        overflow-y: auto;
        display: block;
    }
    
    nav.open {
        right: 0;
    }
    
    .overlay.show {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 99;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 0;
        width: 100%;
        padding: 0;
    }
    
    nav ul li {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid #374151;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 15px 0;
        display: block;
        color: #94a3b8;
    }
    
    nav ul li a:hover {
        color: #60a5fa;
    }
    
    /* Other existing mobile styles */
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .profile-image-round {
        max-width: 240px;
    }
    
    .experience-card {
        padding: 25px;
    }
    
    .experience-icon-container {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .experience-icon-container .material-icons {
        font-size: 26px;
    }
    
    .experience-card h3 {
        font-size: 18px;
    }
    
    .velzani-logo-container {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }
    
    .velzani-logo {
        width: 75%;
        height: 75%;
    }
    
    .wp-logo-container {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }
    
    .velzani-card,
    .wordpress-card {
        padding: 24px 30px;
    }
    
    .wholesale-content {
        flex-direction: column;
    }
    
    .wholesale-form-container {
        margin-top: 40px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
    }
    
    .social-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 580px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
    
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero h1 {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 15px;
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .profile-image-round {
        max-width: 200px;
    }
    
    .experience-card {
        padding: 20px;
    }
    
    .experience-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .experience-icon-container .material-icons {
        font-size: 24px;
    }
    
    .experience-card h3 {
        font-size: 17px;
    }
    
    .experience-card p {
        font-size: 14px;
    }
    
    .velzani-logo-container {
        width: 105px;
        height: 105px;
        margin-bottom: 16px;
    }
    
    .velzani-logo {
        width: 70%;
        height: 70%;
    }
    
    .wp-logo-container {
        width: 105px;
        height: 105px;
        margin-bottom: 16px;
    }
    
    .velzani-card,
    .wordpress-card {
        padding: 20px 25px;
    }
}

/* Prevent body scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.wholesale-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 16px;
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 220px;
}

.wholesale-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.wholesale-btn .material-icons {
    margin-right: 10px;
    font-size: 20px;
}

/* Additional wholesale button mobile styles */
@media (max-width: 480px) {
    .wholesale-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .wholesale-btn .material-icons {
        font-size: 18px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Where to Buy Section - Side by side layout */
.buy-sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.buy-section {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.buy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

.buy-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
    gap: 15px;
}

.buy-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.buy-section:hover .buy-icon-container {
    transform: scale(1.1);
}

.buy-icon-container .material-icons {
    font-size: 32px;
    color: white;
}

.amazon-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.wholesale-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.buy-section-header h3 {
    font-size: 26px;
    color: #ffffff;
    margin: 0;
}

.buy-section-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.buy-section-content > p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Buy Features - for Amazon section */
.buy-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 30px 0;
    flex: 1;
}

.buy-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
    padding: 12px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 6px;
}

.buy-feature .material-icons {
    color: #60a5fa;
    font-size: 24px;
}

/* Wholesale Features - for wholesale section */
.wholesale-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 30px 0;
    flex: 1;
}

.wholesale-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
    padding: 12px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 6px;
}

.wholesale-feature .material-icons {
    color: #60a5fa;
    font-size: 24px;
}

/* Amazon Button */
.amazon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.amazon-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.amazon-btn .material-icons {
    margin-right: 10px;
    font-size: 20px;
}

/* Mobile responsive for buy sections */
@media (max-width: 992px) {
    .buy-sections-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .buy-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .buy-section {
        padding: 30px 25px;
    }
    
    .buy-section-header h3 {
        font-size: 24px;
    }
    
    .amazon-btn,
    .wholesale-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .buy-section {
        padding: 25px 20px;
    }
    
    .buy-section-header h3 {
        font-size: 22px;
    }
    
    .buy-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .buy-icon-container .material-icons {
        font-size: 28px;
    }
    
    .buy-feature,
    .wholesale-feature {
        font-size: 14px;
    }
} 