/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    color: #333;
}

header {
    background-color: #292929;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
}

header h1 {
    font-size: 1.5em;
    letter-spacing: 1px;
}

nav a {
    color: rgb(95, 95, 95);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

nav a:hover {
    color: #0197cd;
}

.hero {
    background-image: url('images/catbackround.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0180bb;
    text-align: center;
    border-radius: 0px 0px 10px 10px;
}

.hero h2 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #0180bb;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.hero button:hover {
    background-color: #0170bb;
}

.products {
    padding: 50px;
    display: grid;
    grid-template-rows: 1fr 1fr ;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 5px;
    font-size: 1.2em;
}

.product-card p {
    color: #ff6f61;
    font-weight: bold;
}

.footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.text {
    color: cornsilk;
    text-shadow: #111 2px;
}

.container {
    padding: 2rem;
}

.slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    aspect-ratio: 16/9;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 12px;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
    transform: translateY(-1px);
}
footer{
    background-color: #292929;
    color: aliceblue;
    text-align: center;
    border-radius: 12px 12px 0px 0px;
    padding: 5px;
    left: 0;
    bottom: 0;
    width: 100%;
}
.abouttext{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height:100px;
    margin: 400px;
    background-color:#0180bb;
    margin: 10px;
    border-radius: 12px;
    color: #fafafa;
    padding:20px ;
}
iframe{
    border-radius: 12px;
}
.cart2{
    color: #00ccff;
    background-color: #474747;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius:10px;
    margin: 50px;
}
.sctext{
    color: #00aeff;
    font-size: larger;
}
.social{
    background-color: #474747;
    margin: 50px;
    color: #00ccff; 
    padding: 15px;
    border-radius: 12px;
    font-size: 18pt;
}