* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Century Gothic;
    background-image: url('image/background1.png'); /* Apply the image as the background */
    background-size: cover; /* Ensures the image covers the whole background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the image fixed during scroll */
}
table{
	border-collapse:collapse;
	font-family: Century Gothic;
	/*text-align: center;*/
}


/*-- shop Dropdown --*/
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #e9eaec;
	min-width: 150px;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	color: #000000;
	padding: 10px 15px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/*-------------Streets font------------------------*/
/* Google Font */
@import url(https://fonts.googleapis.com/css?family=Cabin+Condensed)



/*---------------------kat sini start coding banner--------------------------*/
* {box-sizing: border-box}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 900px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/*---product-----------*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px; /* Set a fixed height for consistency */
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 200px; /* Set a fixed height for images */
    object-fit: cover; /* Crop images to fit the container */
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-info {
    flex-grow: 1; /* Allow content to stretch evenly */
    margin-top: 10px;
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    text-overflow: ellipsis; /* Handle long text */
    overflow: hidden;
    white-space: nowrap;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.product-info .price {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.product-info .old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.product-actions {
    margin-top: 15px;
}

.product-actions button {
    background-color: #9286a6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-actions button:hover {
    background-color: #7a688f;
}

/*-----video------*/
@keyframes expand {
  0% {
    width: 20px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 20px;
  }
}
/*-----------Social Icon--------*/
 /* Social media bar container */
.social-bar {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 100;
}

/* Individual social media buttons */
.social-bar a {
    display: flex;
    align-items: center;
    padding: 10px 15px; /* Add padding to create a tag-like appearance */
    margin: 8px 0; /* Add spacing between tags */
    border-radius: 20px; /* Rounded corners for tag effect */
    background-color: #ffffff; /* Background color for visibility */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

/* Icons */
.social-bar a img {
    width: 30px; /* Icon size */
    height: 30px;
    margin-right: 10px; /* Space between icon and text */
}

/* Text next to icons */
.social-bar a span {
    font-size: 14px;
    color: #333; /* Text color */
    font-weight: 600; /* Bold text */
}

/* Hover effects */
.social-bar a:hover {
    background-color: #f0f0f0; /* Change background on hover */
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/*-------auto slide--------*/
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/*-------sales slide form-----------*/
/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.overlay p {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 50px;
}

.modal-content {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    max-width: 400px;
    width: 100%;
}

input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-login {
    padding: 10px 20px;
    background-color: #f78b42;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: auto;
}

.btn-login:hover {
    background-color: #e67e30;
}

/*------you cart----------------*/
    /* Smooth scrolling effect for modal */
    #cartModal {
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Keyframes for modal animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Style for individual cart items */
    #cart-items div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #c8c8b6;
        transition: box-shadow 0.2s;
    }

    #cart-items div:hover {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    /* Remove button for cart items */
    .remove-item-btn {
        background: #dc3545;
        color: white;
        padding: 5px 10px;
        border: none;
        border-radius: 5px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: background 0.2s;
    }

    .remove-item-btn:hover {
        background: #c82333;
    }

/*--------countdown timer------*/
 table {
            margin: 0 auto; /* Centers the table horizontally */
        }
 .countdown-container {
    text-align: center;
    font-family: 'Poppins', sans-serif; /* Stylish font */
    color: #333;
}

.countdown-container h1 {
    font-size: 36px;
    font-weight: bold;
    color: #ff6347; /* Bright color for the header */
}

.countdown-container p {
    font-size: 20px;
    margin: 10px 0;
    color: #555;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f); /* Gradient background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.time-box:hover {
    transform: scale(1.1); /* Subtle zoom effect */
}

.time-box span {
    font-size: 30px;
    font-weight: bold;
    color: #ff4500;
}

.time-box p {
    font-size: 16px;
    color: #333;
}

button {
	width: 30%;
    padding: 12px 25px;
    background: linear-gradient(90deg, #a29aa2, #FFC0CB);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: linear-gradient(90deg, #a29aa2, #FFC0CB);
    transform: scale(1.05);
}
/*-------popup----------------*/
/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #504f50;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensures popup is above all other elements */
    animation: pop-up 0.5s ease-out forwards;
}

@keyframes pop-up {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.popup .popup-content {
    font-size: 18px;
    color: #fff200;
}

.popup .popup-button {
    background-color: #fff200;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*----------gallery-------------*/
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 6px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery img.four-grid-cells {
    grid-row: span 2 / auto;
    grid-column: span 2 / auto;
}

.gallery img.wide-image {
    grid-column: span 2 / auto;
}


/*------Contact area------------*/

.contact-container {
    background: #f5f5c2;
    padding: 20px;
    width: 50%;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

label {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    width: 70%;
    padding: 10px;
    background-color: #FFC0CB;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}