:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent: #d4af37;
    --text-light: #666;
    --text-dark: #333;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
/* Top Bar Styles */
.top-bar {
    background-color: #000;
    color: var(--white);
    padding: 8px 0;
    position: static;
    z-index: 1001;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--accent);
}

.sliding-text-container {
    overflow: hidden;
    width: 70%;
    position: relative;
    max-width: 800px;
}

.sliding-text {
    display: flex;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.sliding-text span {
    padding-right: 80px;
    display: inline-block;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/*==========================================================================================================*/
/* Header Top (Sticky) - Now separate from header */
/* Header Top (Sticky) - Single Row Design */
.header-top {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-right: 10px;
}

.logo span {
    color: var(--accent);
}

.logo img {
    height: auto;
    max-width: 140px;
    object-fit: contain;
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 300px;
    margin: 0 15px;
}

.search-bar input {
    width: 100%;
    padding: 6px 30px 6px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    transition: var(--transition);
    font-size: 14px;
}

.search-bar input:focus {
    border-color: var(--accent);
}

.search-bar button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icons a {
    color: var(--primary);
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.header-icons a:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 8px;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .header-top {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 2rem;
        margin-right: 15px;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .search-bar {
        max-width: 400px;
        margin: 0 20px;
    }
    
    .search-bar input {
        padding: 8px 35px 8px 15px;
        font-size: 15px;
    }
    
    .header-actions {
        margin-left: 15px;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    .header-icons a {
        font-size: 1.2rem;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        margin-left: 12px;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        max-width: 130px;
    }
    
    .search-bar {
        max-width: 220px;
        margin: 0 12px;
    }
    
    .search-bar input {
        padding: 6px 28px 6px 10px;
        font-size: 13px;
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .header-icons a {
        font-size: 0.95rem;
    }
    
    .cart-count {
        width: 13px;
        height: 13px;
        font-size: 0.55rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .header-top {
        padding: 6px 0;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-right: 8px;
    }
    
    .logo img {
        max-width: 90px;
    }
    
    .search-bar {
        max-width: 120px;
        margin: 0 8px;
    }
    
    .search-bar input {
        padding: 5px 25px 5px 8px;
        font-size: 12px;
    }
    
    .search-bar button {
        right: 6px;
        font-size: 12px;
    }
    
    .header-actions {
        margin-left: 8px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icons a {
        font-size: 0.85rem;
    }
    
    .cart-count {
        width: 12px;
        height: 12px;
        font-size: 0.5rem;
        top: -4px;
        right: -4px;
    }
    
    .mobile-menu-toggle {
        font-size: 1rem;
        margin-left: 6px;
    }
}


/*==============================*/

/* Header (now only contains navigation) */
header {
    background-color: var(--white);
    position: relative;
    z-index: 999;
}

/* Navigation */
nav {
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Desktop and Large Screens */
@media (min-width: 1025px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .top-bar-left {
        flex: 0 0 auto;
    }
    
    .top-bar-right {
        flex: 1 1 auto;
        display: flex;
        justify-content: flex-end;
    }
    
    .sliding-text-container {
        width: 70%;
        max-width: 800px;
    }
    
    .sliding-text {
        font-size: 14px;
    }
    
    .sliding-text span {
        padding-right: 80px;
    }
}

/* iPad and Tablets (Portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
    .top-bar-content {
        flex-direction: row;
        align-items: center;
    }
    
    .sliding-text-container {
        width: 60%;
        max-width: 600px;
    }
    
    .sliding-text {
        animation: slide-tablet 25s linear infinite;
        font-size: 13px;
    }
    
    .sliding-text span {
        padding-right: 60px;
    }
    
    @keyframes slide-tablet {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

/* iPad and Tablets (Landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .top-bar-content {
        flex-direction: row;
    }
    
    .sliding-text-container {
        width: 65%;
        max-width: 700px;
    }
    
    .sliding-text {
        animation: slide-tablet-landscape 25s linear infinite;
    }
    
    .sliding-text span {
        padding-right: 70px;
    }
    
    @keyframes slide-tablet-landscape {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
    }
    
    .top-bar-left {
        width: 100%;
        text-align: center;
    }
    
    .top-bar-right {
        width: 100%;
        overflow: hidden;
    }
    
    .sliding-text-container {
        width: 100%;
        max-width: 100%;
    }
    
    .sliding-text {
        animation: slide-mobile 20s linear infinite;
        font-size: 12px;
    }
    
    .sliding-text span {
        padding-right: 40px;
    }
    
    @keyframes slide-mobile {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    .header-top-content {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 10px 0;
    }
    
    .search-bar {
        width: 100%;
        margin: 10px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .top-bar-content {
        gap: 5px;
    }
    
    .sliding-text {
        animation: slide-mobile 15s linear infinite;
        font-size: 11px;
    }
    
    .sliding-text span {
        padding-right: 30px;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .sliding-text-container {
        max-width: 900px;
    }
    
    .sliding-text {
        font-size: 15px;
    }
    
    .sliding-text span {
        padding-right: 90px;
    }
}
/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    /*max-width: 800px;*/
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-img {
    height: 300px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
 
 .product-name a{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
} 
.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--accent);
}

.wishlist {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist:hover {
    color: var(--accent);
}
/* Wishlist Styles */
.wishlist-section {
    padding: 50px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wishlist-item-img {
    height: 250px;
    overflow: hidden;
}

.wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wishlist-item:hover .wishlist-item-img img {
    transform: scale(1.05);
}

.wishlist-item-info {
    padding: 20px;
}

.wishlist-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wishlist-item-price {
    margin-bottom: 15px;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 10px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.remove-wishlist {
    background: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-wishlist:hover {
    background-color: #f8f8f8;
    color: #dc3545;
}

.empty-wishlist {
    text-align: center;
    padding: 50px 0;
}

.empty-wishlist p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Order Tracking Styles */
.order-tracking {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.order-tracking h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.tracking-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

.tracking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.tracking-step.active .step-icon {
    background-color: var(--accent);
    color: var(--white);
}

.step-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tracking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.tracking-info h4,
.tracking-address h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tracking-items {
    margin-bottom: 30px;
}

.tracking-items h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.tracking-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.tracking-item:last-child {
    border-bottom: none;
}

.tracking-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.tracking-item-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tracking-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.tracking-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Search Suggestions */
.search-bar {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-suggestion:hover {
    background-color: var(--secondary);
}

.search-suggestion img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.suggestion-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.suggestion-info p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.no-suggestions {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-timeline {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tracking-timeline::before {
        top: 0;
        bottom: 0;
        left: 25px;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .tracking-step {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .step-icon {
        margin: 0 15px 0 0;
    }
    
    .tracking-details {
        grid-template-columns: 1fr;
    }
    
    .tracking-actions {
        flex-direction: column;
    }
    
    .tracking-actions .btn,
    .tracking-actions .btn-secondary {
        width: 100%;
    }
}
/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--accent);
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover::before {
    background: #4267B2;
}

.social-icon.twitter:hover::before {
    background: #1DA1F2;
}

.social-icon.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon.facebook-page:hover::before {
    background: #4267B2;
}

.social-icon.email:hover::before {
    background: #EA4335;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-icon {
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
}
/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--secondary);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-list li:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Shop Section */
.shop-section {
    padding: 50px 0;
}

.shop-container {
    display: flex;
    gap: 30px;
}

/* Sidebar Filters */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.filter-list input {
    margin-right: 10px;
    accent-color: var(--accent);
}

.price-range {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.filter-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.filter-btn:hover {
    background-color: var(--accent);
}

/* Products Area */
.products-area {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-count {
    font-size: 1.1rem;
    color: var(--text-light);
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown select {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
    appearance: none;
    cursor: pointer;
    font-weight: 500;
}

.sort-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pagination a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.pagination a.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Product Details */
.product-details {
    padding: 50px 0;
}

.product-container {
    display: flex;
    gap: 50px;
}

/* Product Gallery */
.product-gallery {
    flex: 1;
}

.main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: var(--accent);
}

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--accent);
}

.size-option.active {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary);
}

.color-option.black {
    background-color: #000;
}

.color-option.white {
    background-color: #fff;
    border: 1px solid #ddd;
}

.color-option.blue {
    background-color: #1e40af;
}

.color-option.red {
    background-color: #b91c1c;
}

/* Quantity and Add to Cart */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--secondary);
}

.quantity-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.add-to-cart-large {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.add-to-cart-large:hover {
    background-color: var(--accent);
}

.wishlist-large {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-large:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Tabs */
.product-tabs {
    margin-top: 50px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-header:hover {
    color: var(--accent);
}

.tab-header.active {
    color: var(--accent);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table tr:nth-child(even) {
    background-color: var(--secondary);
}

.spec-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 30%;
}

/* Reviews */
.review {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-img {
    height: 250px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-card:hover .related-img img {
    transform: scale(1.1);
}

.related-info {
    padding: 20px;
}

.related-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.related-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

/* Auth Forms */
.auth-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.auth-title p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification i {
    font-size: 1.2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .search-bar {
        width: 200px;
    }
    
    .product-container {
        flex-direction: column;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .search-bar {
        display:none;
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 30px;
    }
    
    .shop-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .add-to-cart-large {
        width: 100%;
    }

    .wishlist-large {
        width: 100%;
    }

    .tab-headers {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-header {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}


/*===========================================*/

/* Cart Section */
.cart-section {
    padding: 50px 0;
}

.cart-container {
    display: flex;
    gap: 30px;
}

.cart-items {
    flex: 2;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background-color: var(--secondary);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-summary {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #dc3545;
}

/* Orders Section */
.orders-section {
    padding: 50px 0;
}

.orders-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.order-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.order-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.status-badge.pending {
    background-color: #ffc107;
    color: var(--white);
}

.status-badge.processing {
    background-color: #17a2b8;
    color: var(--white);
}

.status-badge.shipped {
    background-color: #007bff;
    color: var(--white);
}

.status-badge.delivered {
    background-color: #28a745;
    color: var(--white);
}

.status-badge.cancelled {
    background-color: #dc3545;
    color: var(--white);
}

.order-items {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    gap: 15px;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.shipping-address h4,
.payment-method h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.shipping-address p,
.payment-method p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.empty-orders {
    text-align: center;
    padding: 50px 0;
}

.empty-orders p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Checkout Section */
.checkout-section {
    padding: 50px 0;
}

.checkout-container {
    display: flex;
    gap: 30px;
}

.checkout-form {
    flex: 2;
}

.checkout-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--accent);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    color: var(--accent);
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.payment-option-content i {
    font-size: 1.2rem;
}

.checkout-summary {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    height: fit-content;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Order Confirmation Section */
.order-confirmation-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.confirmation-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.order-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.order-info, .shipping-info {
    flex: 1;
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 5px;
}

.order-info h3, .shipping-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-row span:first-child {
    color: var(--text-light);
}

.order-items {
    margin-bottom: 30px;
    text-align: left;
}

.order-items h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.item-card {
    display: flex;
    gap: 15px;
    background-color: var(--secondary);
    padding: 15px;
    border-radius: 5px;
}

.item-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-container {
        flex-direction: column;
    }
    
    .checkout-container {
        flex-direction: column;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-details {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .order-items {
        grid-template-columns: 1fr;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .confirmation-container {
        padding: 20px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn,
    .confirmation-actions .btn-secondary {
        width: 100%;
    }
}


/*====================Account=========*/

/* Account Section */
.account-section {
    padding: 50px 0;
}

.account-container {
    display: flex;
    gap: 30px;
}

.account-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.account-menu {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.account-menu li {
    border-bottom: 1px solid #eee;
}

.account-menu li:last-child {
    border-bottom: none;
}

.account-menu li.active a {
    background-color: var(--accent);
    color: var(--white);
}

.account-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.account-menu a:hover {
    background-color: var(--secondary);
}

.account-content {
    flex: 1;
}

.welcome-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.welcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.info-row span:first-child {
    font-weight: 600;
    color: var(--text-light);
}

.recent-orders {
    margin-bottom: 20px;
}

.order-summary {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-summary:last-child {
    border-bottom: none;
}

.order-number {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.order-date {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.view-all {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .account-container {
        flex-direction: column;
    }
    
    .account-sidebar {
        width: 100%;
    }
    
    .account-menu {
        display: flex;
        overflow-x: auto;
    }
    
    .account-menu li {
        flex-shrink: 0;
        border-bottom: none;
        border-right: 1px solid #eee;
    }
    
    .account-menu li:last-child {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .account-info {
        grid-template-columns: 1fr;
    }
}

/*========================*/
/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 30px;
    text-align: center;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Wishlist Section */
.wishlist-section {
    padding: 80px 0;
}

.wishlist-container {
    text-align: center;
    padding: 50px 0;
}

.wishlist-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/*===========wish list count======*/
.wishlist-count {
    position: absolute;
    top: -8px;
    right: 2px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Section */
.wishlist-section {
    padding: 50px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.wishlist-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wishlist-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wishlist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wishlist-card:hover .wishlist-img img {
    transform: scale(1.05);
}

.remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.remove-wishlist:hover {
    background-color: var(--white);
    color: #dc3545;
}

.wishlist-info {
    padding: 20px;
}

.wishlist-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.wishlist-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
}

.wishlist-actions .add-to-cart {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.wishlist-actions .add-to-cart:hover {
    background-color: var(--accent);
}

.wishlist-actions .btn-secondary {
    flex: 1;
    padding: 8px 15px;
    text-align: center;
}

.empty-wishlist {
    text-align: center;
    padding: 50px 0;
}

.empty-wishlist p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}



/* Add these styles to assets/css/style.css */

/* Stock Status */
.stock-status {
    margin: 15px 0;
}

.in-stock {
    color: #28a745;
    font-weight: 600;
}

.out-of-stock {
    color: #dc3545;
    font-weight: 600;
}

/* Social Share */
.social-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-share h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Review Form */
.add-review {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.add-review h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--accent);
}

/* Review Section */
.review {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Product Details Enhancements */
.product-gallery {
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Responsive adjustments for product details */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
    
    .product-gallery {
        margin-bottom: 30px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-large,
    .wishlist-large {
        width: 100%;
    }
}





/* Error Section */
.error-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.error-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.error-actions .btn,
.error-actions .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.error-actions .btn {
    background-color: var(--primary);
    color: var(--white);
}

.error-actions .btn:hover {
    background-color: var(--accent);
}

.error-actions .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.error-actions .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-container h1 {
        font-size: 2rem;
    }
    
    .error-container p {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn,
    .error-actions .btn-secondary {
        width: 200px;
    }
}

/*===============================*/
/* Referral Program Styles */
.referral-info {
    margin-bottom: 20px;
}

.referral-code, .referral-link {
    margin-bottom: 15px;
}

.referral-code label, .referral-link label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.code-display {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #495057;
}

.link-display {
    display: flex;
    align-items: center;
}

.link-display input {
    flex-grow: 1;
    border: 1px solid #dee2e6;
    border-radius: 4px 0 0 4px;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}

.copy-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #0069d9;
}

.referral-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.referred-users, .referral-earnings {
    margin-top: 20px;
}

.referred-users h4, .referral-earnings h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.users-list, .earnings-list {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.user-item, .earning-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.user-item:last-child, .earning-item:last-child {
    border-bottom: none;
}

.user-info, .earning-info {
    flex-grow: 1;
}

.user-name {
    display: block;
    font-weight: 600;
}

.user-email {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.user-stats {
    text-align: right;
}

.orders-count {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.total-spent {
    font-weight: 600;
}

.referred-user {
    display: block;
    font-weight: 600;
}

.earning-date {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.earning-amount {
    font-weight: 600;
    color: #28a745;
}







/*=================================================*/
/* Brand Essence Section */
.brand-essence {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.essence-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.essence-card:hover {
    transform: translateY(-10px);
}

.essence-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.mission .essence-icon {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.vision .essence-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.essence-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.essence-card p {
    color: #666;
    line-height: 1.6;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-top-color: #4a00e0;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #4a00e0;
    background-color: rgba(74, 0, 224, 0.1);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.5;
    font-size: 15px;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #4a00e0;
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Product Sections */
.new-arrivals {
    background-color: #f8f8f8;
}

.sale-products .section-title h2:after {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}




/*=====================*/
/* About Page Social Media Section */
.about-social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-social h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.about-social p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.social-links-large {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: #f8f8f8;
  border-radius: 10px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-large i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  z-index: 1;
}

.social-icon-large span {
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
}

.social-icon-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.social-icon-large:hover::before {
  transform: translateY(0);
}

.social-icon-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

.social-icon-large.facebook:hover::before {
  background: #4267B2;
}

.social-icon-large.twitter:hover::before {
  background: #1DA1F2;
}

.social-icon-large.instagram:hover::before {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon-large.facebook-page:hover::before {
  background: #4267B2;
}

.social-icon-large.email:hover::before {
  background: #EA4335;
}

.social-icon-large.whatsapp:hover::before {
  background: #25d366;
}

.contact-direct {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
}

.contact-direct h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  padding-bottom: 10px;
}

.contact-direct h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.contact-direct ul {
  list-style: none;
}

.contact-direct ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-direct ul li i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-direct ul li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-direct ul li a:hover {
  color: var(--accent);
}

/* Responsive adjustments for about social section */
@media (max-width: 768px) {
  .social-links-large {
    justify-content: center;
  }
  
  .social-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .social-icon-large i {
    font-size: 2rem;
  }
  
  .social-icon-large span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .social-icon-large {
    width: 90px;
    height: 90px;
  }
  
  .social-icon-large i {
    font-size: 1.8rem;
  }
  
  .social-icon-large span {
    font-size: 0.7rem;
  }
}