/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7; /* Light background similar to the image */
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Header Bar --- */
.top-bar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.logo img {
    /* Placeholder size - replace with your actual logo */
    width: 30px; 
    height: 30px;
    margin-right: 5px;
}

.logo p {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    margin-left: -50px; /* Adjust as needed */
}

.search-box {
    display: flex;
    border: 1px solid #ccc;
    height: 40px;
    margin-left: 20px;
}

.search-box input {
    border: none;
    padding: 0 10px;
    outline: none;
}

.search-box button {
    background-color: #a4936d; /* Golden color from your image */
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-weight: bold;
}

.shipping-info {
    text-align: center;
    line-height: 1.2;
    margin-left: auto; /* Pushes it towards the right */
    color: #555;
}

.shipping-info i {
    font-size: 20px;
    color: #a4936d;
}

.cart {
    background-color: #a4936d; /* Golden background for the cart */
    color: white;
    padding: 0 20px;
    height: 100%;
    text-align: center;
    line-height: 1.2;
    padding-top: 5px;
    width: 150px; /* Fixed width to match the design */
    font-size: 16px;
    height: 85px; /* Adjust to match the full height of the header area */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -15px; /* Pull it to the edge */
}

.cart p:last-child {
    font-size: 10px;
    margin-top: -3px;
}


/* --- Main Navigation Bar --- */
.main-nav {
    background-color: #333;
    border-top: 1px solid #444;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links a:hover {
    background-color: #444;
}

.nav-links .active {
    background-color: #a4936d; /* Golden highlight for home */
}

.hot-deals {
    background-color: #555;
    margin-left: auto; /* Pushes the 'HOT DEALS' and social icons to the right */
}

.social-icons a {
    padding: 0 10px;
    font-size: 16px;
}


/* --- Main Coming Soon Section --- */
.coming-soon-section {
    text-align: center;
    padding: 80px 0;
}

.coming-soon-section h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    border-bottom: 2px solid #ccc;
    display: inline-block;
    padding-bottom: 10px;
}

.details-section {
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #666;
}

.contact-info-block {
    margin-top: 25px;
    padding: 15px;
    border: 1px dashed #a4936d;
    background-color: #fff;
    line-height: 1.8;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.timer-box {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.timer-box span {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.timer-box p {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}

/* Subscription Form */
.subscribe-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: normal;
}

.subscription-form {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: white;
}

.subscription-form input[type="email"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.subscription-form button {
    width: 60px;
    background-color: #a4936d; /* Golden button */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.subscription-form button:hover {
    background-color: #8c7b5d;
}

/* Bottom Social Links */
.social-links-bottom {
    margin-top: 50px;
}

.social-links-bottom a {
    color: #333;
    font-size: 20px;
    margin: 0 8px;
    transition: color 0.3s;
}

.social-links-bottom a:hover {
    color: #a4936d;
}

/* --- Add to style.css --- */

.contact-info-block i {
    /* Style for the icons next to the text */
    color: #a4936d; /* Use the golden brand color */
    margin-right: 5px;
    font-size: 1.1em; /* Slightly larger than the text */
}
/* --- OPTION A: PULSE ANIMATION --- */

/* Define the animation keyframes */
@keyframes pulse-effect {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.01); /* Slight grow */
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* --- OPTION B: SLIDING FADE-IN ANIMATION --- */

/* Define the animation keyframes */
@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start 20px below its final position */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at its final position */
    }
}

.animated-heading {
    /* Apply the animation to the new heading class */
    animation: slide-in 1.5s ease-out forwards; 
    /* 1.5s: duration, forwards: keeps the final state (opacity: 1) */
    display: block; 
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    opacity: 0; /* Start invisible */
}