@charset "UTF-8";

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

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    padding-top: 80px; /* Prevent content from being hidden behind the fixed header */
}

.container {
    max-width: 1200px; /* Max width for larger screens */
    margin: 0 auto; /* Center container */
    padding: 0 20px; /* Padding for smaller screens */
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999; /* Keep header above content */
    height: 80px;
    display: flex;
    align-items: center; /* Center content vertically */
    padding: 0 20px;
    justify-content: flex-start;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4); /* Initial dark shadow */
    transition: all 0.3s ease;
}

/* Logo Styling */
header .logo {
    height: 60px; /* Logo height */
    margin-right: 20px;
}

/* Banner Styling */
.banner {
    width: 100%;
    margin: 20px 0;
    display: block;
    text-align: center;
}

.banner img {
    width: 100%;
    height: auto;
}

/* Basket Page Styling */
.basket-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

/* Select Box Styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 20px; /* Space for a custom arrow */
    border: 1px solid #ccc; /* Border for the select box */
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    width: 60px; /* Fixed width for select box */
    padding: 5px; /* Padding for better usability */
    margin: 0;
    position: relative; /* Needed for the dropdown positioning */
    z-index: 10;  /* Ensure it appears above other elements */
}

select:focus {
    outline: none; /* Remove focus outline */
}

/* Prevent dropdown from going off the screen */
select option {
    overflow: visible;  /* Allow the dropdown to expand properly */
}

/* Basket Item Quantity Container Styling */
.basket-item-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensure positioning for dropdown */
}

/* Basket Item Styling */
.basket-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.basket-item img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.basket-item-info {
    text-align: center;
    flex: 1;
}

/* Basket Item Info Styling */
.basket-item-name,
.basket-item-price {
    font-size: 1rem;
    margin: 10px 0;
}

.basket-item-edit-remove {
    margin: 10px 0;
}

.basket-item-edit-remove a {
    text-decoration: none;
    color: black;
    margin: 0 5px;
}

/* Separator Styling */
.separator {
    margin: 20px 0;
    border-top: 1px solid #ccc;
}

/* Order Summary Styling */
.order-summary {
    text-align: center;
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 10px;
}
.clear-basket-container {
    display: flex; /* Enable flexbox */
    justify-content: center; /* Horizontally center the button */
    align-items: center; /* Vertically center the button */
    margin-top: 20px; /* Add some spacing from the content above */
}

.clear-basket-button {
    background-color: #ff4d4d; /* Red color for the button */
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
}

.clear-basket-button:hover {
    background-color: #ff1a1a;
}


/* Checkout Button */
.checkout,
.continue-shopping-button {
    display: inline-block;
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.continue-shopping-button:hover,
.checkout:hover {
    background-color: #444; /* Darker shade on hover */
}

/* Media Queries for Larger Screens */
@media (min-width: 768px) {
    .basket-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .basket-item img {
        margin: 0 15px;
    }

    .basket-item-info {
        flex: 1;
        text-align: left;
    }

    .basket-item-quantity select {
        width: 60px; /* Fixed width for large screens */
    }
}

/* Media Queries for Extra Large Screens */
@media (min-width: 1200px) {
    body {
        padding: 40px 0;
    }

    .basket-page {
        padding: 40px;
    }
}

/* Media Query for Responsive Header */
@media (max-width: 768px) {
    /* Adjust header layout on smaller screens */
    header {
        padding: 0 10px; /* Reduce padding for mobile */
        justify-content: center; /* Center the header content */
    }

    /* Logo Styling on smaller screens */
    header .logo {
        height: 50px; /* Reduce logo size */
        margin-right: 0; /* Remove margin for mobile */
    }

    /* Optionally, you can adjust the shadow for mobile */
    header {
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* Lighter shadow */
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    header {
        padding: 0 5px; /* Reduce padding further */
    }

    /* Logo Styling on very small screens */
    header .logo {
        height: 40px; /* Even smaller logo size */
    }
}


/* ================================ 
  centre menu css 
==================================== */
/* Center the navigation menu */
.centered-menu {
    flex-grow: 1; /* Makes sure the menu takes available space */
    text-align: center; /* Center the menu horizontally */
}

/* Style the menu list */
.centered-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Space between menu items */
}

/* Style the menu links */
.centered-menu ul li {
    display: inline-block; /* Ensure each item behaves like an inline-block */
}

.centered-menu ul li a {
    text-decoration: none;
    color: black; /* Set the link color */
    font-size: 16px;
    font-weight: bold; /* Make the text bold */
    transition: color 0.3s; /* Smooth color transition */
}

.centered-menu ul li a:hover {
    color: #777B78; /* Change the color on hover */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    /* Ensure header layout with logo on left and menu below on mobile */
    header {
        display: flex;
        justify-content: space-between; /* Ensure space between logo and menu */
        align-items: center; /* Align content vertically */
        flex-direction: row; /* Keep elements in a row */
        padding: 0 20px;
    }

    /* Adjust .centered-menu to stack vertically on mobile */
    .centered-menu {
        width: 100%; /* Ensure menu takes full width */
        text-align: center; /* Keep text aligned center */
        margin-top: 10px; /* Add space between header and menu */
    }

    .centered-menu ul {
        flex-direction: row; /* Keep items side by side */
        justify-content: center; /* Ensure items are centered horizontally */
        gap: 10px; /* Space between menu items */
        padding: 0;
    }

    .centered-menu ul li a {
        font-size: 11px; /* Smaller font size on mobile */
    }

    .logo {
        height: 60px; /* Keep the logo size same as large screens */
    }
}


/* ================================ 
  Ending Stones gallery CSS Page 
==================================== */
.social-icons-wrapper {
    text-align: center; /* Center the icons */
    margin: 20px 0; /* Add some margin above and below */
}

.social-icons {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    display: flex; /* Use Flexbox for horizontal alignment */
    justify-content: center; /* Center the icons */
    gap: 15px; /* Space between icons */
}

.social-icons li {
    display: inline; /* Make list items inline */
}

.social-icons a {
    text-decoration: none; /* Remove underline from links */
    color: black; /* Icon color */
    font-size: 24px; /* Size of icons */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.social-icons a:hover {
    color: #888770; /* Change color on hover (you can customize this) */
}

/* ====================== 
  STARTING OF SUBSCRIBE BUTTON STYLES 
====================== */
.subscribe-section {
    padding: 40px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center;
}

.subscribe-input {
    padding: 10px;
    width: 50%; /* Use percentage */
    max-width: 300px; /* Set a max-width */
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    transition: border-color 0.3s; /* Smooth transition on focus */
}


.subscribe-input:focus {
    border-color: #333; /* Darker border on focus */
    outline: none; /* Remove default outline */
}

.subscribe-button {
    padding: 10px 20px;
    background-color: #333; /* Dark button */
    color: white; /* Button text color */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.subscribe-button:hover {
    background-color: #444; /* Darker shade on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .subscribe-input {
        width: 80%; /* More responsive on medium screens */
        max-width: 300px; /* Limit maximum width */
    }

    .subscribe-button {
        padding: 10px 15px; /* Adjust button padding */
    }
}

@media (max-width: 480px) {
    .subscribe-section {
        padding: 20px; /* Reduce padding for very small screens */
    }

    .subscribe-input {
        width: 90%; /* Increase width for mobile */
        margin-bottom: 15px; /* Adjust margin */
    }

    .subscribe-button {
        width: 90%; /* Make button full width on mobile */
    }
}

/* ====================== 
  ENDING OF SUBSCRIBE BUTTON STYLES 
====================== */
.copyright {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    font-size: 12px; 
    color: #666; 
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

.copyright-line1, .copyright-line2 {
    margin: 2px 0; 
    text-align: center; /* Center the text for better consistency */
}