:root {
    --primary-color: #00D4D4;
    --secondary-color: #000000;
    --accent-color: #00D4D4;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #F8F8F8;
    --white: #ffffff;
    --border-color: #E0E0E0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

img {
    border-radius: 10px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left a,
.top-bar-right a {
    margin-right: 0;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: var(--white);
}

.top-bar i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Main Header */
.main-header {
    padding: 28px 0;
    border-bottom: none;
    background: linear-gradient(135deg, #0f172a, #111827);
    position: relative;
    overflow: hidden;
}

.main-header::before,
.main-header::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.25), transparent 70%);
    z-index: 0;
}

.main-header::before {
    top: -120px;
    left: -80px;
}

.main-header::after {
    bottom: -140px;
    right: -50px;
}

.header-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 12px 20px;
    border-radius: 999px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.logo h1 {
    font-size: 30px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.search-bar {
    flex: 1 1 0;
    margin: 0 20px;
    max-width: 560px;
}

.search-bar form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-bar form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.search-select,
.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-bg);
    padding: 10px 18px;
    border-radius: 999px;
    flex-shrink: 0;
}

.search-select {
    min-width: 170px;
}

.search-select i,
.search-field i {
    color: var(--primary-color);
    font-size: 16px;
}

.search-select select {
    border: none;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.search-field {
    flex: 1;
    padding: 10px 18px;
    background-color: var(--light-bg);
    border-radius: 999px;
}

.search-field input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: var(--text-color);
}

.search-field input::placeholder {
    color: var(--text-light);
}

.btn-search {
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), #111111);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .main-header {
        padding: 20px 0;
    }

    .header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo cart"
            "search search";
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .header-wrapper .logo {
        grid-area: logo;
        justify-self: start;
    }

    .logo h1 {
        font-size: 24px;
        text-align: left;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .search-bar {
        grid-area: search;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .search-bar form {
        flex-direction: column;
        align-items: stretch;
        border-radius: 25px;
        gap: 10px;
    }

    .search-select,
    .search-field {
        width: 100%;
        border-radius: 18px;
    }

    .btn-search {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .cart-action {
        grid-area: cart;
        justify-self: end;
    }

    .header-actions {
        justify-content: center;
        order: 1;
    }

    .action-item {
        flex-direction: column;
        gap: 5px;
    }

    .action-text span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .header-wrapper {
        padding: 10px;
        gap: 12px;
    }

    .logo h1 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .search-bar form {
        gap: 8px;
    }

    .search-select,
    .search-field {
        padding: 12px 15px;
    }

    .icon-wrapper {
        padding: 8px;
        font-size: 18px;
    }

    .badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .main-nav {
        margin-top: -15px;
        padding-bottom: 25px;
    }

    .main-nav .container {
        padding: 0 10px;
    }

    .main-nav ul {
        padding: 8px 15px;
        gap: 5px;
        margin-top: 30px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        max-width: 100%;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav ul::-webkit-scrollbar {
        height: 4px;
    }

    .main-nav ul::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .main-nav ul::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .main-nav a {
        padding: 8px 15px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    .header-wrapper {
        padding: 8px;
    }

    .search-select select {
        font-size: 13px;
    }

    .search-field input {
        font-size: 14px;
    }

    .search-field input::placeholder {
        font-size: 13px;
    }

    .btn-search span {
        font-size: 14px;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 8px;
        padding: 8px 15px;
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav a {
        text-align: center;
        padding: 10px 16px;
        width: auto;
        min-width: 90px;
        font-size: 13px;
        scroll-snap-align: start;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .main-header {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 16px;
    }

    .header-wrapper {
        border-radius: 20px;
        padding: 12px;
    }

    .search-bar form {
        border-radius: 20px;
    }

    .search-select,
    .search-field {
        padding: 10px 12px;
        border-radius: 15px;
    }

    .btn-search {
        border-radius: 15px;
        padding: 12px;
    }

    .action-text {
        display: none;
    }
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.icon-wrapper {
    position: relative;
    font-size: 20px;
    color: inherit;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 16px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-text span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background-color: var(--primary-color);
}

/* Navigation */
.main-nav {
    background: transparent;
    margin-top: -20px;
    padding-bottom: 35px;
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

.main-nav ul {
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 25px;
    display: flex;
    gap: 10px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    margin-top: 40px;
}

.main-nav a {
    display: block;
    padding: 10px 22px;
    font-weight: 600;
    color: var(--secondary-color);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 212, 212, 0.35);
}

/* Hero Section */
.hero-section {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    font-size: 14px;
}

.hero-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Prevention Section */
.prevention-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

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

.prevention-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: transform 0.3s ease;
}

.prevention-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prevention-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 15px 20px;
    outline: none;
    border-radius: 25px;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 14px;
    transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 80px;
}

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

.stats-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.stats-content p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-counters {
    display: flex;
    gap: 50px;
}

.counter-item {
    text-align: center;
}

.counter-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.counter-item p {
    color: var(--white);
    font-weight: 600;
}

/* Product Section */
.products-section {
    padding-bottom: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    cursor: pointer;
}

.product-image {
    position: relative;
    height: 250px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: bottom 0.3s ease;
}

.product-card:hover .product-actions {
    bottom: 20px;
}

.product-actions a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-actions a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info h4 a {
    color: var(--secondary-color);
}

.product-info h4 a:hover {
    color: var(--primary-color);
}

.rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    font-size: 18px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 14px;
}

.new-price {
    color: var(--primary-color);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 500;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 5px solid var(--primary-color);
}

.toast-info {
    border-left: 5px solid #ffc107;
}

/* Sticky Header */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 0;
    animation: slideDown 0.3s ease;
}

/* Disable sticky header on mobile */
@media (max-width: 768px) {
    .main-header.sticky {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        z-index: auto;
        padding: 15px 0;
        animation: none;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}


.about-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.about-hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-hero-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 212, 212, 0.15);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat-card {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.hero-stat-card span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.hero-stat-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.about-hero-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
}

.media-card img {
    width: 100%;
    display: block;
}

.media-card-floating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.media-card-floating h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.media-card-floating p {
    margin: 0;
    color: var(--text-light);
}

.media-chip {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.media-chip i {
    font-size: 26px;
    color: var(--primary-color);
}

.media-chip strong {
    display: block;
    color: var(--secondary-color);
}

.media-chip span {
    color: var(--text-light);
    font-size: 14px;
}

.mission-values-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.mission-card {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0f172a, #1d243a);
    color: #ffffff;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
}

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

.mission-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 25px;
}

.mission-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.mission-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-checklist i {
    color: var(--primary-color);
}

.values-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(0, 212, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.about-metrics-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #0f172a, #0b3a47);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.metric-card span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(120deg, #0f172a, #0c2233);
    color: #ffffff;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    align-items: center;
}

.contact-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-card i {
    font-size: 22px;
    color: var(--primary-color);
}

.highlight-card strong {
    display: block;
    color: #ffffff;
}

.highlight-card span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.response-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.response-meta span {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.response-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-panel-card {
    border-radius: 24px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.contact-panel-card.primary {
    background: linear-gradient(135deg, #00d4d4, #0087d4);
    color: #ffffff;
}

.contact-panel-card.secondary {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #ffffff;
}

.contact-panel-card.secondary span {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-panel-card.tertiary {
    color: #ffffff;
}

.contact-panel-card.tertiary .tag {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.contact-connect-section {
    padding: 30px 0;
    background: #f6fafc;
}

.contact-connect-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
}

.contact-details-panel,
.contact-form-panel {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.contact-details-panel h3,
.contact-form-panel h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f9fbfc;
}

.contact-info-card i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info-card strong {
    display: block;
    color: var(--secondary-color);
}

.contact-info-card span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-info-card a {
    display: inline-block;
    margin: 4px 0;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

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

.availability-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(120deg, #0f172a, #182848);
    color: #ffffff;
    border-radius: 24px;
    padding: 25px;
    margin-top: 100px;
}

.availability-card h3 {
    color: #ffffff;
}

.availability-card span {
    font-size: 32px;
    font-weight: 700;
}

.contact-form-panel {
    position: relative;
}

.contact-form-panel::after {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--white);
    padding: 100px 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
}

/* Responsive Design for New Pages */
@media (max-width: 992px) {

    .about-hero-grid,
    .mission-grid,
    .contact-grid,
    .contact-hero-grid,
    .contact-connect-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-highlight-cards {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-placeholder {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .about-hero-section,
    .contact-hero-section,
    .contact-section,
    .team-section,
    .faq-section,
    .map-section {
        padding: 60px 0;
    }
}

.about-hero-section {
    padding: 50px;
}

/* Cart Sidebar */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: linear-gradient(160deg, #0a0a0a 0%, #1c1c1c 40%, var(--white) 100%);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    backdrop-filter: blur(10px);
}

.cart-sidebar::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.35) 0%, transparent 70%);
    top: -60px;
    right: -80px;
    pointer-events: none;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--white);
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--primary-color);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #f5f5f5, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cart-item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    color: var(--text-color);
}

.quantity-btn:hover {
    background-color: #f9f9f9;
}

.quantity-input {
    width: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 12px;
    padding: 2px 0;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: var(--accent-color);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.cart-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cart-footer .btn {
    width: 100%;
    text-align: center;
}

.cart-footer .btn-secondary {
    background-color: #ffffff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 999px;
    font-weight: 600;
    padding: 12px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-footer .btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cart-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #00b6ff);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    padding: 14px 24px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 25px rgba(0, 196, 204, 0.4);
}

.empty-cart-message {
    text-align: center;
    padding-top: 50px;
    color: #999;
}

.empty-cart-message i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-cart-message p {
    margin-bottom: 20px;
}

/* Product Modal */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 10px 0 0 10px;
}

.modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.modal-details {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.modal-product-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.modal-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}

.modal-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-description {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modal-actions .quantity-controls {
    height: 45px;
}

.modal-actions .quantity-btn {
    width: 35px;
    height: 100%;
}

.modal-actions .quantity-input {
    width: 40px;
    height: 100%;
    font-size: 16px;
}

.btn-add-to-cart {
    padding: 12px 40px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }

    .modal-image {
        border-radius: 10px 10px 0 0;
        padding: 20px;
    }

    .modal-image img {
        max-height: 250px;
    }

    .modal-details {
        padding: 20px;
    }
}

/* Hide Number Input Arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Modern Multi-Step Checkout Page */
.checkout-section {
    padding: 60px 0;
    background-color: #f8fafc;
    min-height: 100vh;
}

.checkout-back {
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.checkout-header {
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.checkout-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .step-number {
    background: #22c55e;
    color: white;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--secondary-color);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 10px;
    position: relative;
    top: -10px;
}

.progress-line.completed {
    background: var(--primary-color);
}

/* Form Container */
.checkout-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.checkout-form {
    width: 100%;
}

.checkout-step {
    min-height: 400px;
    display: block;
}

.checkout-step[style*="display: none"] {
    display: none !important;
}

.checkout-step .step-content {
    width: 100%;
    padding: 20px 0;
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Modern Checkout Form Styles */
.checkout-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-form-container .form-group {
    margin-bottom: 25px;
}

.checkout-form-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.checkout-form-container .form-group input,
.checkout-form-container .form-group select {
    width: 100% !important;
    padding: 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
    background: white !important;
    display: block !important;
    box-sizing: border-box !important;
}

.checkout-form-container .form-group input:focus,
.checkout-form-container .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Payment Security */
.payment-security {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    color: #0369a1;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods img {
    height: 30px;
    width: auto;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 5px 8px;
}

/* Navigation Buttons */
.checkout-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.btn-back,
.btn-continue,
.btn-complete-payment {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-back {
    background: #f8fafc;
    color: var(--text-color);
    border: 2px solid #e5e7eb;
}

.btn-back:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-continue,
.btn-complete-payment {
    background: linear-gradient(135deg, var(--primary-color), #00b8b8);
    color: white;
    margin-left: auto;
}

.btn-continue:hover,
.btn-complete-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 212, 0.3);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    position: sticky;
    top: 100px;
}

.order-summary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.order-summary-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 4px;
}

.order-item-qty {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.order-totals {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-color);
}

.total-row:last-child {
    margin-bottom: 0;
}

.free-delivery {
    color: #22c55e;
    font-weight: 600;
}

.final-total {
    font-size: 1.2rem;
    padding-top: 15px;
    border-top: 2px solid #f1f5f9;
    margin-top: 15px;
}

.final-total span {
    color: var(--primary-color) !important;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 12px;
    color: #166534;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-summary-sidebar {
        position: relative;
        top: auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 40px 0;
    }
    
    .checkout-header h1 {
        font-size: 2rem;
    }
    
    .checkout-form-container {
        padding: 30px 20px;
    }
    
    .checkout-progress {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkout-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-back,
    .btn-continue,
    .btn-complete-payment {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
}

/* Legacy Checkout Styles (for backward compatibility) */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

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

.checkout-form-col h3,
.order-summary-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group .required {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.order-summary-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.order-products-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.order-products-list {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-product-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.order-product-item span:first-child {
    color: var(--text-color);
}

.order-product-item span:last-child {
    font-weight: 600;
    color: var(--secondary-color);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.order-total-row.total {
    font-size: 20px;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.payment-methods {
    margin: 30px 0;
}

.payment-method {
    margin-bottom: 15px;
}

.payment-method label {
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
}

.payment-desc {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
    margin-left: 20px;
    line-height: 1.5;
}

.btn-place-order {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

/* Cart Page */
.cart-page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 20px;
}

@media (max-width: 992px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
    }
}

.cart-table-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 13px;
}

.cart-page-items {
    width: 100%;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-page-item:last-child {
    border-bottom: none;
}

.cart-page-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-page-product img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background-color: #f5f5f5;
    padding: 5px;
}

.cart-page-product h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.cart-page-price,
.cart-page-subtotal {
    font-weight: 600;
    color: var(--secondary-color);
    text-align: right;
}

.cart-page-quantity .quantity-controls {
    border-radius: 30px;
    padding: 0 5px;
}

.cart-page-quantity .quantity-btn {
    width: 30px;
    height: 30px;
}

.cart-page-quantity .quantity-input {
    width: 45px;
    font-size: 14px;
}

.cart-page-item .remove-item {
    margin-top: 8px;
    font-size: 13px;
    padding: 0;
}

.cart-summary-card {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

.cart-summary-card h3 {
    margin-bottom: 25px;
    font-size: 22px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.cart-summary-row.total {
    font-size: 20px;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.cart-summary-card .btn {
    margin-top: 10px;
}

.cart-page-empty {
    text-align: center;
    padding: 60px 30px;
}

.cart-page-empty i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cart-page-empty p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .cart-table-header,
    .cart-page-item {
        grid-template-columns: 1fr;
    }

    .cart-page-price,
    .cart-page-subtotal {
        text-align: left;
    }

    .cart-page-item {
        gap: 10px;
    }

    .cart-page-product {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-page-product img {
        width: 100%;
        max-width: 120px;
    }
}

/* Product Details Page */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-image-section {
    position: relative;
}

.product-main-image {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.product-rating .rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-status.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-status.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

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

.product-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.product-features {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-features h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features ul li i {
    color: var(--primary-color);
}

.product-actions-section {
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-color);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-meta {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.meta-item {
    padding: 8px 0;
    color: var(--text-light);
}

.meta-item strong {
    color: var(--text-color);
    margin-right: 10px;
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: 80px;
}

.tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-panel h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.tab-panel p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table td {
    padding: 15px 10px;
    color: var(--text-light);
}

.specs-table td:first-child {
    width: 30%;
}

.review-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.average-rating .stars {
    margin-bottom: 10px;
}

.average-rating .stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.total-reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header strong {
    color: var(--text-color);
}

.review-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Related Products */
.related-products-section h3 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .tabs-header {
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-info-section h2 {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Product Image Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumbnail:hover {
    border-color: var(--primary-color);
}

.product-thumbnail.active {
    border-color: var(--primary-color);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Review Form */
.add-review-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.add-review-section h4 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
    margin-top: 8px;
}

.star-rating-input i {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating-input i:hover,
.star-rating-input i.active {
    color: #ffc107;
}

@media (max-width: 576px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }

    .product-thumbnails {
        gap: 10px;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Product Image Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumbnail:hover {
    border-color: var(--primary-color);
}

.product-thumbnail.active {
    border-color: var(--primary-color);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Review Form */
.add-review-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.add-review-section h4 {
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
}

.star-rating-input {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.star-rating-input i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-input i:hover,
.star-rating-input i.active {
    color: #ffc107;
}

.review-form .btn {
    margin-top: 10px;
}

/* Responsive for thumbnails */
@media (max-width: 576px) {
    .product-thumbnails {
        gap: 10px;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
}



.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: #fff;
}

.category-list span {
    font-size: 0.9rem;
}

/* Price Filter */
.price-filter input[type="range"] {
    width: 100%;
    margin: 15px 0;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Rating Filter */
.rating-filter {
    list-style: none;
}

.rating-filter li {
    margin-bottom: 12px;
}

.rating-filter label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-light);
}

.rating-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.rating-filter .stars {
    display: flex;
    gap: 3px;
}

.rating-filter .stars i {
    font-size: 0.9rem;
    color: #ffc107;
}

.btn-reset-filters {
    width: 100%;
}

/* Shop Content */
.shop-content {
    min-height: 500px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.showing-results {
    color: var(--text-light);
    font-size: 0.95rem;
}

.shop-sorting {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sorting label {
    color: var(--text-color);
    font-weight: 600;
}

.shop-sorting select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    background: #fff;
}

.shop-sorting select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .shop-sorting {
        width: 100%;
    }

    .shop-sorting select {
        flex: 1;
    }
}

/* ========================================
   MODERN INDEX PAGE STYLES
   ======================================== */

/* Modern Hero Section */
.modern-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-modern {
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-content-modern h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}

.hero-content-modern p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image-modern {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8a8 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features Grid Section */
.features-grid-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fbfb 0%, #eef7ff 100%);
    position: relative;
    overflow: hidden;
}

.features-grid-section::before,
.features-grid-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.features-grid-section::before {
    top: -120px;
    left: -80px;
}

.features-grid-section::after {
    bottom: -160px;
    right: -60px;
}

.section-header-modern {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 212, 212, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-modern h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
}

.features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), #00b6ff);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 196, 204, 0.35);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) scale(1.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    color: rgba(31, 41, 55, 0.75);
    line-height: 1.8;
    margin: 0;
}

/* Certification Section */
.certification-section {
    padding: 110px 0;
    background: var(--white);
}

.certification-section .btn-secondary {
    color: white;
    border-color: white;
}

.certification-section .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.cert-card {
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 20px;
    border: 1px dashed rgba(0, 212, 212, 0.3);
    pointer-events: none;
}

.cert-card h3 {
    margin-top: 20px;
}

.cert-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 212, 0.12);
    color: var(--secondary-color);
    font-size: 28px;
}

.cert-list {
    list-style: none;
    margin-top: 20px;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-light);
}

.cert-list i {
    color: var(--primary-color);
}

.certification-trust-panel {
    margin-top: 20px;
    margin-bottom: 35px;
    padding: 35px;
    border-radius: 30px;
    background: linear-gradient(120deg, #0f172a, #12243b);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.certification-trust-panel h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.certification-logos span {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .certification-trust-panel {
        flex-direction: column;
        text-align: center;
    }

    .certification-trust-panel .btn {
        width: 100%;
    }
}

/* Products Showcase */
.products-showcase {
    padding: 100px 0;
    background: var(--light-bg);
}

/* Stats Diagonal Section */
.stats-diagonal-section {
    padding: 120px 0;
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8a8 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-box .stat-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-content {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 60px 80px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content-modern {
        padding-right: 0;
        text-align: center;
    }

    .hero-content-modern h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-modern h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .section-header-modern h2 {
        font-size: 2rem;
    }

    .floating-badge {
        display: none;
    }
}

/* Order Confirmation Page Styles */
.order-confirmation-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.order-confirmation-content {
    max-width: 900px;
    margin: 0 auto;
}

.order-success-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #00B8B8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.order-success-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.order-info-card,
.shipping-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.order-info-card h3,
.shipping-info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-info-card h3 i,
.shipping-info-card h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    color: var(--text-color);
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.shipping-address {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.delivery-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 1rem;
}

.delivery-estimate i {
    color: var(--primary-color);
}

.order-items-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.order-items-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.order-items-section h3 i {
    color: var(--primary-color);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.order-item-sku {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-item-quantity {
    color: var(--text-light);
    margin-right: 20px;
    font-weight: 500;
}

.order-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.order-summary-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.summary-card {
    padding: 30px;
}

.summary-card h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.confirmation-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card h4 i {
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Print Styles */
@media print {
    .order-confirmation-section {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    #header-placeholder,
    #footer-placeholder,
    .confirmation-actions {
        display: none !important;
    }
    
    .order-confirmation-content {
        box-shadow: none !important;
    }
}

/* Responsive Design for Order Confirmation */
@media (max-width: 768px) {
    .order-details-grid,
    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-success-header h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .order-item-image {
        width: 60px;
        height: 60px;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Services Highlight Section */
.services-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    text-align: center;
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-feature{
    margin: 20px;
}

.services-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.services-highlight .container {
    position: relative;
    z-index: 2;
}

.services-highlight h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-highlight p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.service-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-feature:hover::before {
    left: 100%;
}

.service-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.service-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-cta .btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.contact-cta .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.contact-cta .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.contact-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.contact-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-cta .btn:hover::before {
    left: 100%;
}

.contact-cta .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-cta .btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .services-highlight {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    
    .services-highlight h3 {
        font-size: 2rem;
    }
    
    .services-highlight p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .service-feature {
        padding: 25px 15px;
    }
    
    .service-feature i {
        font-size: 2.5rem;
    }
    
    .service-feature h4 {
        font-size: 1.2rem;
    }
    
    .contact-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-highlight {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .services-highlight h3 {
        font-size: 1.8rem;
    }
    
    .service-feature {
        padding: 20px 15px;
    }
    
    .service-feature i {
        font-size: 2.2rem;
    }
    
    .contact-cta .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
